added README and setup.py

This commit is contained in:
Daniel Knuettel 2017-12-29 00:23:01 +01:00
parent 270bbdf063
commit 6ca49399f5
2 changed files with 20 additions and 0 deletions

8
README.rst Normal file
View File

@ -0,0 +1,8 @@
licor -- Disclaimer Helper
**************************
licor (spelled liquor) is a little script that allows
programmers to add copyright/license/warranty disclaimers to
all their files easily.

12
setup.py Normal file
View File

@ -0,0 +1,12 @@
from setuptools import setup, find_packages
setup(
name = "licor",
version = "0.0.1",
packages = find_packages(),
package_data = {"licor": ["templates/*"]},
author = "Daniel Knüttel",
author_email = "daniel.knuettel@daknuett.eu",
install_requires = ["docopt"]
)