File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 44Setup script for zenmoney API
55'''
66
7- from setuptools import setup
7+ from setuptools import setup , find_packages
88from zenmoney import VERSION
99
1010
11+ with open ('README.md' ) as f :
12+ long_description = f .read ()
13+
1114setup (
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' ,
182324+ 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)
You can’t perform that action at this time.
0 commit comments