cleanup + more args

This commit is contained in:
Rdimo
2022-06-03 12:30:58 +02:00
parent a5e1830a97
commit dce633c5ea
3 changed files with 51 additions and 49 deletions

View File

@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
__name__ = "bitches"
__version__ = "0.0.2"
__version__ = "0.0.3"
setup(
name=__name__,
@@ -11,17 +11,17 @@ setup(
description="how about you pip install some bitches",
long_description_content_type="text/markdown",
long_description=open("README.md", encoding="utf-8").read(),
url = "https://github.com/rdimo/pip-install-bitches",
url="https://github.com/rdimo/pip-install-bitches",
project_urls={
"Bug Tracker": "https://github.com/rdimo/pip-install-bitches/issues",
"Bug Tracker": "https://github.com/rdimo/pip-install-bitches/issues",
},
install_requires=['requests'],
packages=find_packages(),
keywords=['bitches', 'python', 'package', 'library', 'lib', 'module', 'checker'],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)
)