mirror of
https://github.com/daknuett/licor
synced 2024-07-20 12:15:24 +00:00
14 lines
343 B
Python
14 lines
343 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"],
|
|
|
|
entry_points = {"console_scripts": ["licor = licor.main:main"]}
|
|
)
|