-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (58 loc) · 1.71 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
# coding=utf-8
import os
import sys
from setuptools import find_packages
from setuptools import setup
assert sys.version_info[0] == 3 and sys.version_info[1] >= 5, "steep-golos requires Python 3.5 or newer"
def readme_file():
return 'README.rst' if os.path.exists('README.rst') else 'README.md'
def license_file():
return 'LICENSE' if os.path.exists('LICENSE') else 'LICENSE.txt'
setup(
name='steep-golos',
version='0.0.20',
author='@steepshot',
author_email='steepshot.org@gmail.com',
description='Fork of official python STEEM library for Golos blockchain',
license=open(license_file()).read(),
keywords='golos steep-golos',
url='https://github.com/Chainers/steep-golos',
long_description=open(readme_file()).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=[
'appdirs',
'ecdsa',
'pylibscrypt',
'scrypt',
'pycrypto',
'requests',
'urllib3',
'certifi',
'ujson',
'w3lib',
'maya',
'toolz',
'funcy',
'langdetect',
'diff-match-patch',
'prettytable',
'voluptuous',
'python-dateutil',
'websocket-client'
],
entry_points={
'console_scripts': [
'golospy=golos.cli:legacy',
'golospiston=golos.cli:legacy',
]
})