-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (52 loc) · 1.62 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
# 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 = '1.0.0'
setup(
name='PythonMiddleware',
version=VERSION,
description='Python library for Cocos-BCX',
long_description=open('README.md', encoding="utf-8").read(),
author='UnitedLabs',
author_email='[email protected]',
maintainer='UnitedLabs',
maintainer_email='[email protected]',
keywords=['PythonMiddleware', 'library', 'api', 'rpc'],
packages=[
"PythonMiddleware",
"PythonMiddlewareapi",
"PythonMiddlewarebase",
],
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=[
"ecdsa==0.13",
"requests==2.22.0",
"websocket-client==0.48.0",
"pylibscrypt==1.7.1",
"pycryptodome==3.6.6",
"websockets==6.0",
"appdirs==1.4.3",
"Events==0.3",
"scrypt==0.8.6",
"pycrypto==2.6.1", # for AES, installed through graphenelib already
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
include_package_data=True,
)