forked from korasinski/pyNetia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 934 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 934 Bytes
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
30
"""Setup pyNetia package."""
from setuptools import setup
from pyNetia import _VERSION
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'pyNetia',
packages = ['pyNetia'],
version = _VERSION,
license = 'gpl-3.0',
description = 'Python wrapper for Netia Player',
long_description = long_description,
long_description_content_type = "text/markdown",
author = 'Jakub Orasiński',
author_email = 'korasinski@icloud.com',
url = 'https://github.com/korasinski/pyNetia',
keywords = ['Netia Player', 'Home Assistant', 'custom component'],
install_requires =['requests'],
include_package_data = True,
zip_safe = False,
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
"Programming Language :: Python",
"Operating System :: OS Independent",
]
)