This repository has been archived by the owner on Mar 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
executable file
·52 lines (48 loc) · 1.55 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
#!/usr/bin/env python
import codecs
from setuptools import setup
try:
codecs.lookup('mbcs')
except LookupError:
ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.5.7'
setup(
name='piston-lib',
version=VERSION,
description='Python library for STEEM',
long_description=open('README.md').read(),
download_url='https://github.com/xeroc/piston-lib/tarball/' + VERSION,
author='Fabian Schuh',
author_email='[email protected]',
maintainer='Fabian Schuh',
maintainer_email='[email protected]',
url='http://lib.piston.rocks',
keywords=['steem', 'library', 'api', 'rpc', 'transactions'],
packages=["piston", "pistonapi", "pistonbase"],
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.5.3",
"websockets>=2.0",
"scrypt>=0.7.1",
"diff-match-patch>=20121119",
"appdirs>=1.4.0",
"python-frontmatter>=0.2.1",
"pycrypto>=2.6.1",
"funcy",
"python-dateutil>=2.6.1",
# "python-dateutil",
# "secp256k1==0.13.2"
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
include_package_data=True,
)