forked from GenesisKernel/blockexplorer
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (64 loc) · 1.66 KB
/
setup.py
File metadata and controls
70 lines (64 loc) · 1.66 KB
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
import os
from setuptools import setup, find_packages
__VERSION__ = '0.3.1'
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
requires = [
'sqlalchemy-datatables',
'Flask',
'jinja2',
'Flask-SQLAlchemy',
'Flask-RESTful',
'Flask-JWT',
'psycopg2-binary',
'inflect',
'dictalchemy',
'six',
'pytz',
'aniso8601',
'jwt',
'Flask-JsonTools',
'msgpack',
'attrdict',
'gunicorn',
'astunparse',
'docopt',
'autopep8',
'genesis-blockchain-tools',
'genesis-blockchain-api-client',
'nose',
'celery',
'redis==2.10.6',
'Flask-SocketIO',
'eventlet',
'socketIO-client',
'diskcache',
'tcpping',
]
dependency_links = [
'git+https://github.com/blitzstern5/genesis-blockchain-api-client#egg=genesis-blockchain-api-client',
'git+https://github.com/blitzstern5/genesis-blockchain-tools#egg=genesis-blockchain-tools',
]
setup(
name='genesis_block_explorer',
version=__VERSION__,
description='Genesis Block Explorer',
long_description=README,
classifiers=[
"Programming Language :: Python",
"Framework :: Flask",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='blitzstern5',
author_email='blitzstern5@gmail.com',
url='https://github.com/blitzstern5/genesis-block-explorer',
keywords='web wsgi bfg flask',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='genesis_block_explorer',
install_requires=requires,
dependency_links=dependency_links,
)