mirror of
https://github.com/daknuett/licor
synced 2024-07-20 12:15:24 +00:00
13 lines
277 B
Python
13 lines
277 B
Python
|
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"]
|
||
|
|
||
|
)
|