forked from Gjum/gagar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 1.27 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='gagar',
packages=['gagar'],
py_modules=['gagar'],
version='0.1.2',
description='Standalone graphical agar.io Python client using GTK and agarnet',
author='Gjum',
author_email='[email protected]',
url='https://github.com/Gjum/gagar',
license='GPLv3',
install_requires=[
'agarnet >= 0.2.3',
'tagar >= 0.1.0',
# TODO add gi, gobject, cairo requirements
],
entry_points={'gui_scripts': ['gagar = gagar.main:main']},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Education',
'Topic :: Games/Entertainment',
'Topic :: Games/Entertainment :: Simulation',
],
)