mirror of
https://github.com/daknuett/licor
synced 2024-07-20 12:15:24 +00:00
added README and setup.py
This commit is contained in:
parent
270bbdf063
commit
6ca49399f5
8
README.rst
Normal file
8
README.rst
Normal 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
12
setup.py
Normal 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"]
|
||||||
|
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user