forked from Netherdrake/conductor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 850 Bytes
/
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
# 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, "conductor requires Python 3.5 or newer"
setup(
name='conductor',
version='0.3.3',
description='Steem Witness Toolkit',
long_description=open('README.rst').read(),
packages=find_packages(),
setup_requires=['pytest-runner'],
tests_require=['pytest',
'pytest-pylint',
'pytest-console-scripts'],
install_requires=[
'Click',
'click-spinner',
'tabulate',
'requests',
'prettytable',
],
dependency_links=[
'git+git://github.com/Netherdrake/steem-python'
],
entry_points={
'console_scripts': [
'conductor=conductor.cli:conductor',
]
})