import some bitches

This commit is contained in:
Rdimo
2022-03-10 15:34:48 +01:00
commit a8bda2e374
5 changed files with 75 additions and 0 deletions

26
setup.py Normal file
View File

@@ -0,0 +1,26 @@
from setuptools import setup, find_packages
__name__ = "bitches"
__version__ = "0.0.1"
setup(
name=__name__,
version=__version__,
author="Rdimo",
author_email="<contact.rdimo@gmail.com>",
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/bitches",
project_urls={
"Bug Tracker": "https://github.com/rdimo/bitches/issues",
},
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",
]
)