forked from steemit/hivemind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (43 loc) · 1.16 KB
/
setup.py
File metadata and controls
47 lines (43 loc) · 1.16 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
# coding=utf-8
import sys
from setuptools import find_packages
from setuptools import setup
assert sys.version_info[0] == 3 and sys.version_info[1] >= 5, "hive requires Python 3.5 or newer"
# yapf: disable
setup(
name='hivemind',
version='0.0.1',
description='Community consensus layer for the Steem blockchain',
long_description=open('README.md').read(),
packages=find_packages(exclude=['scripts']),
setup_requires=['pytest-runner'],
tests_require=['pytest',
'pep8',
'pytest-pylint',
'yapf',
'sphinx',
'recommonmark',
'sphinxcontrib-restbuilder',
'sphinxcontrib-programoutput',
'pytest-console-scripts'],
install_requires=[
'aiopg',
'jsonrpcserver',
'aiohttp',
'certifi',
'sqlalchemy',
'click',
'funcy',
'toolz',
'maya',
'ujson',
'urllib3',
'PrettyTable',
'psycopg2',
'aiocache',
],
entry_points={
'console_scripts': [
'hive=hive.cli:cli',
]
})