-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (21 loc) · 823 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""Set up nowplaypadgen."""
from setuptools import find_packages, setup
with open("requirements.txt", encoding="utf-8") as f:
requirements = f.read().splitlines()
setup(
name="nowplaypadgen",
description="DAB+ now playing PAD (DLS+ and MOT SLS generator)",
url="https://github.com/radiorabe/nowplaypadgen",
author="RaBe IT-Reaktion",
author_email="[email protected]",
license="AGPL-3",
packages=find_packages(exclude=("tests",)),
version_config={"starting_version": "0.1.0"},
setup_requires=["setuptools-git-versioning"],
install_requires=requirements,
entry_points={"console_scripts": ["nowplaypadgenctl = nowplaypadgenctl:main"]},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Affero General Public License v3",
],
)