-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
34 lines (29 loc) · 899 Bytes
/
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
#!/usr/bin/env python
'''
Setup script for zenmoney API
'''
from setuptools import setup, find_packages
from zenmoney import VERSION
with open('README.md') as f:
long_description = f.read()
setup(
name='zenmoney',
version='.'.join(str(d) for d in VERSION),
description='Library for zenmoney.ru API',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/Felixoid/python-zenmoney',
license='MIT',
author='Mikhail f. Shiryaev',
author_email='[email protected]',
install_requires=['requests'],
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
python_requires='>=3',
)