diff --git a/Makefile b/Makefile index 545abe0..d37380e 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ clean: python3 setup.py clean + -rm dist/* sdist: clean python3 setup.py sdist diff --git a/setup.py b/setup.py index c0a8376..a6ebd0b 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,12 @@ from setuptools import setup, find_packages setup( name = "licor", - version = "0.0.2", + version = "0.0.4", packages = find_packages(), package_data = {"licor": ["templates/*", "templates/*/*"]}, author = "Daniel Knüttel", author_email = "daniel.knuettel@daknuett.eu", + url = "https://github.com/daknuett/licor", install_requires = ["docopt"], description = "A script to add license disclaimers", long_description = open("README.rst").read(),