forked from nekoyume/nekoyume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
97 lines (89 loc) · 2.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import codecs
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
def long_description():
try:
with codecs.open(os.path.join(here, 'README.rst'),
encoding='utf-8') as f:
return f.read()
except IOError:
pass
install_requires = [
'bencode.py >= 2.0.0, < 2.1.0',
'blinker >= 1.4, < 1.5',
'celery >= 4.1.0, < 4.2.0',
'click >= 6.7, < 7.0',
'cykeccak >= 0.13.2.2, < 0.14.0.0',
'dataclasses >= 0.6, < 1.0',
'Flask >= 0.12.2, < 0.13.0',
'Flask-Babel >= 0.11.2, < 0.12.0',
'Flask-Caching >= 1.4.0, < 1.5.0',
'Flask-SQLAlchemy >= 2.3.2, < 2.4.0',
'gevent == 1.3.5',
'gunicorn >= 19.9.0',
'psycopg2 >= 2.7.5, < 2.8.0',
'ptpython == 0.41',
'pytz >= 2018.3',
'raven==6.9.0',
'redis >= 2.10.6, < 2.11.0',
'requests >= 2.18.4, < 2.19.0',
'coincurve >= 9.0.0',
'SQLAlchemy >= 1.2.2, < 1.3.0',
'tablib >= 0.12.1, < 0.13.0',
'typeguard >= 2.2.2, < 2.3.0',
]
if __name__ == '__main__':
setup(
name='nekoyume',
version='0.1.2',
description='Decentralized MMORPG based on Dungeon World',
long_description=long_description(),
url='https://github.com/nekoyume/nekoyume',
license='LICENSE.txt',
author='JC Kim',
author_email='[email protected]',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Other Audience',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Games/Entertainment :: Role-Playing',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords='blockchain mmorpg game',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=install_requires,
extras_require={
'dev': [
'flake8 >= 3.5.0, < 3.6.0',
'flake8-import-order-spoqa >= 1.5.0, < 1.6.0',
'recommonmark==0.4.0',
'Sphinx >= 1.7.1, < 1.8.0',
'sphinx-rtd-theme==0.2.4',
],
'test': [
'pytest >= 3.8.0, < 3.9.0',
'pytest-flake8 >= 1.0.2, < 1.1.0',
'pytest-localserver >= 0.4.1, < 0.5',
'codecov >= 2.0.15, < 2.1.0',
],
},
package_data={
'nekoyume': [
'tables/*.tsv'
'templates/*.html',
'translations/*/LC_MESSAGES/*'
],
},
entry_points={
'console_scripts': [
'nekoyume = nekoyume.cli:cli',
],
},
project_urls={
'Bug Reports': 'https://github.com/nekoyume/nekoyume/issues',
'Funding': 'https://nekoyu.me/',
'Source': 'https://github.com/nekoyume/nekoyume/',
},
)