-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
40 lines (38 loc) · 1.19 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
import sys
from setuptools import setup, find_packages
requirements = ['aiopg','websockets','aiohttp']
setup(
version='0.0.1-dev',
author = 'Simon Wittber',
author_email = '[email protected]',
classifiers = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
],
description = 'A MOG Server using asyncio in Python3',
download_url = '',
install_requires = requirements,
package_data = {
'' : ['*.txt'],
'network': ['data/*.sql'],
},
keywords = ['API', 'Game', 'MMO', 'MOG'],
license = 'MIT',
name = 'NetWrok-Server',
platforms = 'any',
packages = find_packages('src'),
package_dir = {'':'src'},
url = 'http://github.com/DifferentMethods/netwrok-server',
zip_safe = True,
entry_points={
'console_scripts': [
'netwrok = netwrok.main:run',
'netwrok_create = netwrok.cmd:create',
]
}
)