-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (26 loc) · 905 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
27
28
29
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="amcp_pylib",
url="https://github.com/dolejska-daniel/amcp-pylib",
version="0.2.2",
author="Daniel Dolejska",
author_email="[email protected]",
description="AMCP (Advanced Media Control Protocol) Client Library",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
packages=find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Video",
"Topic :: Utilities",
],
)