-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·50 lines (45 loc) · 1.45 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
48
49
50
#!/usr/bin/env python3
#
# The purpose of this script is to enable uploading SpielViz to the Python
# Package Index, which can be easily done by doing:
#
# python3 setup.py sdist upload
#
# See also:
# - https://packaging.python.org/distributing/
# - https://docs.python.org/3/distutils/packageindex.html
#
from setuptools import setup
setup(
name='spielviz',
version='0.0.1',
author='Michal Sustr',
author_email='michal.sustr@gmail.com',
url='https://github.com/michalsustr/spielviz',
description="SpielViz is an interactive viewer for OpenSpiel games",
long_description="""
SpielViz is an interactive viewer for OpenSpiel games.
""",
license="LGPL",
packages=['spielviz'],
entry_points=dict(gui_scripts=['spielviz=spielviz.__main__:main']),
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Multimedia :: Graphics :: Viewers',
],
install_requires=[
'coloredlogs',
'pyspiel',
'chess',
# This is true, but doesn't work realiably
'gi',
'gi-cairo'
],
)