Compare commits
No commits in common. "dd0c3488b70b3c390b8ffd8cc5194db0d36ca73c" and "881e5d14e6b2bf08564c8a571894ef71ddd93e65" have entirely different histories.
dd0c3488b7
...
881e5d14e6
@ -1,4 +1,3 @@
|
|||||||
# PyPong
|
# PyPong
|
||||||
[![License: GNU GPL v3.0](https://img.shields.io/badge/license-GNU%20GPL%20v3.0-blue)](LICENSE)
|
|
||||||
|
|
||||||
A game of pong made in PyGame, designed to be used over a network connection.
|
A game of pong made in PyGame, designed to be used over a network connection.
|
@ -1 +1 @@
|
|||||||
pygame~=2.1.2
|
pygame
|
26
setup.py
26
setup.py
@ -1,26 +0,0 @@
|
|||||||
import setuptools
|
|
||||||
import pypong
|
|
||||||
|
|
||||||
with open('requirements.txt') as fh:
|
|
||||||
required = fh.read().splitlines()
|
|
||||||
|
|
||||||
with open('README.md', 'r') as fh:
|
|
||||||
long_description = fh.read()
|
|
||||||
|
|
||||||
setuptools.setup(
|
|
||||||
name='PyPong',
|
|
||||||
version=pypong.__version__,
|
|
||||||
author='Nicholas Dyer',
|
|
||||||
description='A game of pong made in PyGame for play over a local network',
|
|
||||||
license='GNU GPL-3.0',
|
|
||||||
long_description=long_description,
|
|
||||||
long_description_content_type='text/markdown',
|
|
||||||
url='https://gitea.citruxx.com/ndyer/PyPong',
|
|
||||||
packages=setuptools.find_packages(),
|
|
||||||
# https://pypi.org/classifiers/
|
|
||||||
classifiers=[
|
|
||||||
],
|
|
||||||
install_requires=required,
|
|
||||||
python_requires='>=3.10',
|
|
||||||
include_package_data=True,
|
|
||||||
)
|
|
Loading…
Reference in New Issue
Block a user