-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (35 loc) · 1.08 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
import sys
from setuptools import setup, find_packages
setup(
name='chillin-server',
version='2.3.0',
description='Chillin AI Game Framework (Python Server)',
long_description='',
author='Koala',
author_email='[email protected]',
url='https://github.com/koala-team/Chillin-PyServer',
keywords='ai game framework chillin',
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Application Frameworks'
],
license='AGPL License, Version 3.0',
install_requires=[
'circuits==3.2',
'pydblite==3.0.4',
'configparser==3.5.0',
'enum34==1.1.6'
],
extras_require={
'dev': ['koala-serializer']
},
packages=find_packages(),
package_data={
'chillin_server': ['default_certs/*']
}
)