forked from radiorabe/nowplaying
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 773 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
26
"""Set up nowplaying."""
from setuptools import find_packages, setup
with open("requirements.txt") as file:
requirements = file.read().splitlines()
setup(
name="rabe-nowplaying",
description="Now Playing RaBe Songticker",
url="http://github.com/radiorabe/nowplaying",
author="RaBe IT-Reaktion",
author_email="[email protected]",
license="AGPL-3",
version_config=True,
setup_requires=["setuptools-git-versioning"],
install_requires=requirements,
packages=find_packages(exclude=("tests",)),
entry_points={"console_scripts": ["nowplaying=nowplaying.__main__:main"]},
zip_safe=True,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Affero General Public License v3",
],
)