1
0
mirror of https://github.com/daknuett/licor synced 2024-07-20 12:15:24 +00:00
licor/setup.py

13 lines
277 B
Python
Raw Normal View History

2017-12-28 23:23:01 +00:00
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"]
)