12345678910111213141516171819202122232425262728293031 |
- from setuptools import setup, find_packages
- with open("README.md", "r", encoding="utf-8") as fh:
- long_description = fh.read()
- setup(
- name='warranty-manager',
- version='3.0.0b1',
- description='A program to create HP and Dell warranty claims',
- long_description=long_description,
- long_description_content_type="text/markdown",
- url='https://notabug.org/esmith1412/warranty_manager',
- author='Elijah Smith',
- license='GNU GPLv3',
- packages=find_packages(),
- include_package_data=True,
- entry_points='''
- [console_scripts]
- create_executable=warranty_manager.scripts.create_executable:create_executable
- ''',
- classifiers=[
- "Programming Language :: Python :: 3.7",
- 'Development Status :: 4 - Beta',
- "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
- "Operating System :: POSIX :: Linux",
- "Operating System :: Microsoft :: Windows :: Windows 10"
- ],
- python_requires='~=3.7.3'
- )
|