2017-12-28 23:23:01 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name = "licor",
|
2018-01-31 10:09:14 +00:00
|
|
|
version = "0.0.4",
|
2017-12-28 23:23:01 +00:00
|
|
|
packages = find_packages(),
|
2018-01-25 12:13:27 +00:00
|
|
|
package_data = {"licor": ["templates/*", "templates/*/*"]},
|
2017-12-28 23:23:01 +00:00
|
|
|
author = "Daniel Knüttel",
|
|
|
|
author_email = "daniel.knuettel@daknuett.eu",
|
2018-01-31 10:09:14 +00:00
|
|
|
url = "https://github.com/daknuett/licor",
|
2018-01-25 11:50:00 +00:00
|
|
|
install_requires = ["docopt"],
|
2018-01-31 09:37:50 +00:00
|
|
|
description = "A script to add license disclaimers",
|
|
|
|
long_description = open("README.rst").read(),
|
2017-12-28 23:23:01 +00:00
|
|
|
|
2018-01-25 11:50:00 +00:00
|
|
|
entry_points = {"console_scripts": ["licor = licor.main:main"]}
|
2017-12-28 23:23:01 +00:00
|
|
|
)
|