forked from steemit/sbds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (45 loc) · 1.11 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
# coding=utf-8
from setuptools import find_packages
from setuptools import setup
# yapf: disable
setup(
name='sbds',
version='0.1',
packages=find_packages(),
setup_requires=['pytest-runner'],
tests_require=['pytest',
'pep8',
'pytest-pylint',
'yapf',
'sphinx',
'recommonmark',
'sphinxcontrib-restbuilder',
'sphinxcontrib-programoutput'],
install_requires=[
'Click',
'click-spinner',
'emoji',
'steem-piston==0.4.1',
'boto3',
'python-json-logger',
'requests==2.10.0',
'mysqlclient',
'sqlalchemy',
'ujson',
'bottle',
'bottle-sqlalchemy',
'urllib3',
'certifi',
'maya',
'toolz',
'w3lib',
'langdetect',
'yapf'
],
entry_points={
'console_scripts': [
'sbds=sbds.cli:sbds',
'dev-server=sbds.http_server:dev_server',
'populate=sbds.storages.db.scripts.populate:populate'
]
})