diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..545abe0 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ + +clean: + python3 setup.py clean +sdist: clean + python3 setup.py sdist + +bdist_wheel: clean + python3 setup.py bdist_wheel + +install: + python3 setup.py install + +upload: sdist bdist_wheel + twine upload dist/* + + + diff --git a/setup.py b/setup.py index a8cfe71..c0a8376 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,14 @@ from setuptools import setup, find_packages setup( name = "licor", - version = "0.0.1", + version = "0.0.2", packages = find_packages(), package_data = {"licor": ["templates/*", "templates/*/*"]}, author = "Daniel Knüttel", author_email = "daniel.knuettel@daknuett.eu", install_requires = ["docopt"], + description = "A script to add license disclaimers", + long_description = open("README.rst").read(), entry_points = {"console_scripts": ["licor = licor.main:main"]} )