-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1006 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (30 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup
with open('requirements.txt') as f:
install_requires = [d.strip() for d in f.read().strip().splitlines()]
setup(
name='nguess',
version='1.0',
description='Simulation of a schooltime number guess game',
long_description=open('README.md').read(),
author='m33mt33n',
author_email='[email protected]',
url='https://github.com/m33mt33n/nguess',
license='GPLv3+',
packages=['nguess'],
package_dir={'nguess': 'src'},
python_requires=">=3.7",
install_requires=install_requires,
entry_points={
'console_scripts': ['nguess = nguess.cli:main'],
},
classifiers=[ # see https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Topic :: Games/Entertainment :: Simulation',
'Environment :: Console',
'License :: GPLv3+ License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
],
)