-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (39 loc) · 1.46 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
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
def get_file_content(file_name):
with open(path.join(here, file_name), encoding='utf-8') as f:
return f.read()
version = {}
exec(open(path.join(here, 'modulbank/version.py')).read(), version)
setup(
name="modulbank",
version=version['__version__'],
description="Python client for ModulBank REST API",
long_description=get_file_content('README.rst'),
url="https://github.com/otetz/modulbank",
author="Alexey Shevchenko",
author_email="[email protected]",
license='MIT',
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
keywords='modulbank bank',
packages=find_packages(),
include_package_data=True,
setup_requires=['pytest-runner'],
install_requires=get_file_content('requirements.txt'),
tests_require=get_file_content('requirements_test.txt'),
test_suite='tests',
)