-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
45 lines (41 loc) · 1.37 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
45
"""
Setup file
Refer to https://github.com/ampache/python3-ampache
"""
from setuptools import setup
from setuptools import find_packages
from setuptools import Extension
from codecs import open
from os import path
# Get __version__ from _meta.py
with open(path.join("src", "_meta.py")) as f:
exec(f.read())
_here = path.abspath(path.dirname(__file__))
with open(path.join(_here, "README.rst"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setup(
name="ampache",
py_modules=["ampache"],
package_dir={'': 'src'},
author="Lachlan de Waard (lachlan-00)",
author_email="[email protected]",
version=__version__,
description="Python library for Ampache XML & JSON API",
long_description=LONG_DESCRIPTION,
include_package_data=False,
url="https://github.com/ampache/python3-ampache",
download_url="https://github.com/ampache/python3-ampache",
license="GPL-3.0",
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: PHP Classes",
"Intended Audience :: Developers",
],
keywords="",
install_requires=[""],
)