fixed manifest

master
Daniel Knüttel 2018-01-31 11:09:14 +01:00
parent 99cef366e4
commit edc55b40f8
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,7 @@
clean:
python3 setup.py clean
-rm dist/*
sdist: clean
python3 setup.py sdist

View File

@ -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(),