Skip to content

Commit cccf1c6

Browse files
committed
Prepare to publish on PyPI
1 parent f0a9e96 commit cccf1c6

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

setup.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,31 @@
44
Setup script for zenmoney API
55
'''
66

7-
from setuptools import setup
7+
from setuptools import setup, find_packages
88
from zenmoney import VERSION
99

1010

11+
with open('README.md') as f:
12+
long_description = f.read()
13+
1114
setup(
1215
name='zenmoney',
1316
version='.'.join(str(d) for d in VERSION),
1417
description='Library for zenmoney.ru API',
18+
long_description=long_description,
19+
long_description_content_type="text/markdown",
1520
url='https://github.com/Felixoid/python-zenmoney',
1621
license='MIT',
1722
author='Mikhail f. Shiryaev',
1823
author_email='[email protected]',
24+
install_requires=['requests'],
25+
packages=find_packages(),
1926
classifiers=[
27+
'Development Status :: 4 - Beta',
28+
'License :: OSI Approved :: MIT License',
2029
'Environment :: Console',
2130
'Programming Language :: Python :: 3',
31+
'Operating System :: OS Independent',
2232
],
2333
python_requires='>=3',
2434
)

0 commit comments

Comments
 (0)