setup.py 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. from setuptools import setup, find_packages
  2. with open("README.md", "r", encoding="utf-8") as fh:
  3. long_description = fh.read()
  4. setup(
  5. name='warranty-manager',
  6. version='3.0.0b1',
  7. description='A program to create HP and Dell warranty claims',
  8. long_description=long_description,
  9. long_description_content_type="text/markdown",
  10. url='https://notabug.org/esmith1412/warranty_manager',
  11. author='Elijah Smith',
  12. license='GNU GPLv3',
  13. packages=find_packages(),
  14. include_package_data=True,
  15. entry_points='''
  16. [console_scripts]
  17. create_executable=warranty_manager.scripts.create_executable:create_executable
  18. ''',
  19. classifiers=[
  20. "Programming Language :: Python :: 3.7",
  21. 'Development Status :: 4 - Beta',
  22. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  23. "Operating System :: POSIX :: Linux",
  24. "Operating System :: Microsoft :: Windows :: Windows 10"
  25. ],
  26. python_requires='~=3.7.3'
  27. )