Skip to content

Commit

Permalink
Add github metadata to setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
thcidale0808 committed Jul 1, 2023
1 parent 3cd0930 commit 7e0a382
Showing 1 changed file with 30 additions and 4 deletions.
34 changes: 30 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,41 @@
from os import path

import setuptools

this_directory = path.abspath(path.dirname(__file__))
requirements_path = path.join(this_directory, "requirements.txt")
with open(requirements_path, "r") as f:
install_requires = f.read().splitlines()

with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()

setuptools.setup(
name="canarypy",
version="0.0.11",
version="0.0.12",
author="Thiago Assumpcao",
description="CanaryPy python package.",
author_email="thcidale@gmail.com",
description="CanaryPy - A light and powerful canary release for Data Pipelines",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/thcidale0808/canarypy",
packages=setuptools.find_packages(),
python_requires=">=3.8",
install_requires=[
"requests",
install_requires=install_requires,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
project_urls={
"Bug Reports": "https://github.com/thcidale0808/canarypy/issues",
"Source": "https://github.com/thcidale0808/canarypy/",
},
entry_points="""
[console_scripts]
canarypy=canarypy.cli.main:cli
Expand Down

0 comments on commit 7e0a382

Please sign in to comment.