-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·107 lines (93 loc) · 2.99 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# -*- coding: utf-8 -*-
"""Packaging logic for dpaycli."""
import codecs
import io
import os
import sys
from setuptools import setup
# Work around mbcs bug in distutils.
# http://bugs.python.org/issue10945
try:
codecs.lookup('mbcs')
except LookupError:
ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.02.0'
tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized']
requires = [
"future",
"ecdsa",
"requests",
"websocket-client",
"appdirs",
"Events",
"scrypt",
"pylibscrypt",
"pycryptodomex",
"pytz",
"Click",
"prettytable"
]
def write_version_py(filename):
"""Write version."""
cnt = """\"""THIS FILE IS GENERATED FROM dpaycli SETUP.PY.\"""
version = '%(version)s'
"""
with open(filename, 'w') as a:
a.write(cnt % {'version': VERSION})
def get_long_description():
"""Generate a long description from the README file."""
descr = []
for fname in ('README.rst',):
with io.open(fname, encoding='utf-8') as f:
descr.append(f.read())
return '\n\n'.join(descr)
if __name__ == '__main__':
# Rewrite the version file everytime
write_version_py('dpaycli/version.py')
write_version_py('dpayclibase/version.py')
write_version_py('dpaycliapi/version.py')
write_version_py('dpaycligraphenebase/version.py')
setup(
name='dpaycli',
version=VERSION,
description='Unofficial Python library for dPay',
long_description=get_long_description(),
download_url='https://github.com/holgern/dpaycli/tarball/' + VERSION,
author='Holger Nahrstaedt',
author_email='holger@nahrstaedt.de',
maintainer='Holger Nahrstaedt',
maintainer_email='holger@nahrstaedt.de',
url='http://www.github.com/holgern/dpaycli',
keywords=['dpay', 'library', 'api', 'rpc'],
packages=[
"dpaycli",
"dpaycliapi",
"dpayclibase",
"dpaycligraphenebase",
"dpaycligrapheneapi"
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Office/Business :: Financial',
],
install_requires=requires,
entry_points={
'console_scripts': [
'dpay=dpaycli.cli:cli',
],
},
setup_requires=['pytest-runner'],
tests_require=tests_require,
include_package_data=True,
)