licor/setup.py

36 lines
1.9 KiB
Python
Raw Permalink Normal View History

2018-10-10 08:23:10 +00:00
# Copyright (c) 2018 Daniel Knüttel #
# #
# This file is part of licor. #
# #
# licor is free software: you can redistribute it and/or modify #
# it under the terms of the GNU Affero General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# licor is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU Affero General Public License #
# along with licor. If not, see <http://www.gnu.org/licenses/>. #
# #
# #
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
)