|
4 | 4 | Setup script for zenmoney API |
5 | 5 | ''' |
6 | 6 |
|
7 | | -from setuptools import setup |
| 7 | +from setuptools import setup, find_packages |
8 | 8 | from zenmoney import VERSION |
9 | 9 |
|
10 | 10 |
|
| 11 | +with open('README.md') as f: |
| 12 | + long_description = f.read() |
| 13 | + |
11 | 14 | setup( |
12 | 15 | name='zenmoney', |
13 | 16 | version='.'.join(str(d) for d in VERSION), |
14 | 17 | description='Library for zenmoney.ru API', |
| 18 | + long_description=long_description, |
| 19 | + long_description_content_type="text/markdown", |
15 | 20 | url='https://github.com/Felixoid/python-zenmoney', |
16 | 21 | license='MIT', |
17 | 22 | author='Mikhail f. Shiryaev', |
18 | 23 | author_email='mr.felixoid@gmail.com', |
| 24 | + install_requires=['requests'], |
| 25 | + packages=find_packages(), |
19 | 26 | classifiers=[ |
| 27 | + 'Development Status :: 4 - Beta', |
| 28 | + 'License :: OSI Approved :: MIT License', |
20 | 29 | 'Environment :: Console', |
21 | 30 | 'Programming Language :: Python :: 3', |
| 31 | + 'Operating System :: OS Independent', |
22 | 32 | ], |
23 | 33 | python_requires='>=3', |
24 | 34 | ) |
0 commit comments