Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. from setuptools import find_namespace_packages, setup
  2.  
  3. packages = [package for package in find_namespace_packages(where='./src', include='package_cheat_sheet.*')]
  4.  
  5. setup(
  6. name='python-package-cheat-sheet',
  7. version='1.0.0',
  8. author='Your Name',
  9. author_email='you@yourdomain.com',
  10. description='Python package developer\'s cheat sheet',
  11. platforms='Posix; MacOS X; Windows',
  12. packages=packages,
  13. package_dir={
  14. '': 'src'
  15. },
  16. include_package_data=True,
  17. install_requires=(
  18. 'stringcase',
  19. ),
  20. classifiers=[
  21. 'Development Status :: 1 - Alpha',
  22. 'Natural Language :: English',
  23. 'Programming Language :: Python',
  24. 'Programming Language :: Python :: 3.6',
  25. 'Programming Language :: Python :: 3.7',
  26. ],
  27. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement