-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (35 loc) · 830 Bytes
/
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
42
from setuptools import setup
CLASSIFIERS = '''\
License :: OSI Approved
Programming Language :: Python :: 3.7 :: 3.8
Topic :: Software Development
'''
DISTNAME = 'gobychess'
AUTHOR = 'Tom Magorsch'
AUTHOR_EMAIL = 'tom.magorsch@tu-dortmund.de'
DESCRIPTION = 'Chess Engine'
LICENSE = 'MIT'
README = 'Simple python chess engine'
VERSION = '0.1.0'
ISRELEASED = False
PYTHON_MIN_VERSION = '3.7'
PYTHON_REQUIRES = f'>={PYTHON_MIN_VERSION}'
PACKAGES = [
'gobychess',
'tests',
'benchmarks'
]
metadata = dict(
name=DISTNAME,
version=VERSION,
long_description=README,
packages=PACKAGES,
python_requires=PYTHON_REQUIRES,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
classifiers=[CLASSIFIERS],
license=LICENSE
)
if __name__ == '__main__':
setup(**metadata)