forked from xeroc/piston-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (39 loc) · 1.53 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
#!/usr/bin/env python
from setuptools import setup
from pip.req import parse_requirements
# Work around mbcs bug in distutils.
# http://bugs.python.org/issue10945
import codecs
try:
codecs.lookup('mbcs')
except LookupError:
ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.2.2'
setup(name='steem',
version=VERSION,
description='Python library for GOLOS',
long_description=open('README.md').read(),
download_url='https://github.com/xeroc/python-steem/tarball/' + VERSION,
author='Fabian Schuh',
author_email='<Fabian@BitShares.eu>',
maintainer='Fabian Schuh',
maintainer_email='<Fabian@BitShares.eu>',
url='http://www.github.com/xeroc/python-steem',
keywords=['steem', 'library', 'api', 'rpc'],
packages=["steemapi", "steembase", "steemexchange"],
classifiers=['License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Office/Business :: Financial',
],
install_requires=["graphenelib>=0.4.5",
"websockets==2.0",
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
include_package_data=True,
)