Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. from setuptools import setup, find_packages
  2.  
  3. with open("README.md", "r") as file:
  4. long_description = file.read()
  5.  
  6. setup(
  7. name='RssReaderLast',
  8. version='0.1.0',
  9. author='Pavel Martysiuk',
  10. author_email='martys3688@gmail.com',
  11. description='Cmd utility',
  12. long_description=long_description,
  13. packages=find_packages(),
  14. classifiers=["Programming Language :: Python :: 3",
  15. "License :: OSI Approved :: MIT License",
  16. "Operating System :: OS Independent"],
  17. python_requires='>=3.7'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement