-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (39 loc) · 1.38 KB
/
setup.py
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
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
VERSION = '0.0.11'
packages = find_packages()
with open('README.md', 'r') as file:
long_description = file.read()
setup(name='perfect-information-game',
version=VERSION,
description='Create 2D perfect information board games, and play them with machine learning systems.',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
python_requires='>=3.8',
install_requires=[
'numpy',
'tensorflow',
'tensorflowjs',
'keras',
'pygame',
'easygui'
],
extras_require={'dev': [
'chess',
'memory_profiler',
'matplotlib',
'check-manifest',
'twine'
]},
packages=packages,
package_data={'perfect_information_game.resources': ['*.png']},
classifiers=['License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent'],
url='https://github.com/amaarquadri/perfect-information-game',
author='Amaar Quadri',
author_email='[email protected]')
# TODO: see if there are more relevant classifiers: https://pypi.org/classifiers/
# python setup.py bdist_wheel sdist
# twine upload dist/*