Tweak reqs, add rename_category, etc.

This commit is contained in:
3wc
2021-09-07 23:53:36 +02:00
parent 704206ae7c
commit a3aef30826
2 changed files with 33 additions and 3 deletions

View File

@ -6,8 +6,8 @@ with open("README.md", "r") as fh:
setuptools.setup(
name="hamster-tools", # Replace with your own username
version="0.0.1",
author="Carl van Tonder",
author_email="carl@supervacuo.com",
author="calix",
author_email="3wc.python@doesthisthing.work",
description="Manage hamster-time-tracker data",
long_description=long_description,
long_description_content_type="text/markdown",
@ -23,4 +23,8 @@ setuptools.setup(
[console_scripts]
hamster-tools=hamstertools:cli
''',
install_requires=[
"click >= 8.0.1",
"requests >= 2.25.1",
]
)