Reorganise

This commit is contained in:
3wc
2020-09-21 20:17:59 +02:00
parent d03ab17079
commit 1fd66175a2
4 changed files with 73 additions and 0 deletions

26
setup.py Normal file
View File

@ -0,0 +1,26 @@
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",
author="Carl van Tonder",
author_email="carl@supervacuo.com",
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
''',
)