PynPong/setup.py

26 lines
719 B
Python
Raw Permalink Normal View History

2022-12-20 09:12:49 -05:00
import setuptools
2022-12-22 09:08:06 -05:00
import pynpong
2022-12-20 09:12:49 -05:00
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',
2022-12-22 09:08:06 -05:00
version=pynpong.__version__,
2022-12-20 09:12:49 -05:00
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',
2022-12-22 09:08:06 -05:00
url='https://gitea.citruxx.com/ndyer/PynPong',
2022-12-20 09:12:49 -05:00
packages=setuptools.find_packages(),
# https://pypi.org/classifiers/
classifiers=[
],
install_requires=required,
python_requires='>=3.10',
include_package_data=True,
)