-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.28 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
42
43
44
45
46
47
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
packages = ['numpy', '']
setuptools.setup(
name='darkhex',
version='0.0.1',
author='Bedir Tapkan',
author_email='tapkan@ualberta.ca',
description='Set of tools to analyze and research the game Dark Hex.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/BedirT/darkHex',
project_urls={
'Bug Reports': 'https://github.com/BedirT/darkHex/issues',
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
python_requires='>=3.6',
packages=setuptools.find_packages(),
install_requires=[
'numpy',
'open-spiel',
'pydot',
'xdot',
'pycairo',
'PyGObject',
'dill',
],
extras_require={
'dev': [
'pytest',
'typing',
],
},
)