-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.39 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from __future__ import print_function
import io
from setuptools import setup
import pylibrespot_java
def read(*filenames, **kwargs):
encoding = kwargs.get("encoding", "utf-8")
sep = kwargs.get("sep", "\n")
buf = []
for filename in filenames:
with io.open(filename, encoding=encoding) as file:
buf.append(file.read())
return sep.join(buf)
LONG_DESCRIPTION = read("README.md")
setup(
name="pylibrespot-java",
version=pylibrespot_java.__version__,
url="http://github.com/uvjustin/pylibrespot-java/",
author="Justin Wong",
install_requires=['aiohttp'],
author_email="[email protected]",
description="Python Interface for librespot-java",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
package_data={"pyforked_daapd": ["py.typed"]},
zip_safe=False,
packages=["pylibrespot_java"],
include_package_data=True,
platforms="any",
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)