hamster-tools/setup.py

31 lines
830 B
Python
Raw Permalink Normal View History

2020-09-21 18:17:59 +00:00
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="hamster-tools", # Replace with your own username
version="0.0.1",
2021-09-07 21:53:36 +00:00
author="calix",
author_email="3wc.python@doesthisthing.work",
2020-09-21 18:17:59 +00:00
description="Manage hamster-time-tracker data",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
entry_points='''
[console_scripts]
hamster-tools=hamstertools:cli
''',
2021-09-07 21:53:36 +00:00
install_requires=[
"click >= 8.0.1",
"requests >= 2.25.1",
]
2020-09-21 18:17:59 +00:00
)