2017-08-07 09:04:00 +00:00
|
|
|
#!/usr/bin/env python
|
2019-06-10 14:16:24 +00:00
|
|
|
# coding: utf-8
|
2017-08-07 09:04:00 +00:00
|
|
|
#
|
|
|
|
# This file is part of Supysonic.
|
|
|
|
# Supysonic is a Python implementation of the Subsonic server API.
|
|
|
|
#
|
2019-04-13 14:19:02 +00:00
|
|
|
# Copyright (C) 2013-2019 Alban 'spl0k' Féron
|
2017-08-07 09:04:00 +00:00
|
|
|
# 2017 Óscar García Amor
|
|
|
|
#
|
|
|
|
# Distributed under terms of the GNU AGPLv3 license.
|
2014-05-01 01:00:44 +00:00
|
|
|
|
2017-08-07 09:04:00 +00:00
|
|
|
import supysonic as project
|
2014-05-01 01:00:44 +00:00
|
|
|
|
2017-08-07 09:04:00 +00:00
|
|
|
from setuptools import setup
|
|
|
|
from setuptools import find_packages
|
2014-05-01 01:00:44 +00:00
|
|
|
|
2018-04-29 12:51:30 +00:00
|
|
|
reqs = [
|
2019-06-29 15:25:44 +00:00
|
|
|
"flask>=0.11",
|
|
|
|
"pony>=0.7.6",
|
|
|
|
"Pillow",
|
|
|
|
"requests>=1.0.0",
|
|
|
|
"mutagen>=1.33",
|
2019-07-08 04:48:40 +00:00
|
|
|
"scandir<2.0.0; python_version <= '2.7'",
|
2019-06-29 15:25:44 +00:00
|
|
|
"watchdog>=0.8.0",
|
|
|
|
"zipstream",
|
2018-04-29 12:51:30 +00:00
|
|
|
]
|
|
|
|
|
2017-08-07 09:04:00 +00:00
|
|
|
setup(
|
2019-06-29 15:25:44 +00:00
|
|
|
name=project.NAME,
|
|
|
|
version=project.VERSION,
|
|
|
|
description=project.DESCRIPTION,
|
|
|
|
keywords=project.KEYWORDS,
|
|
|
|
long_description=project.LONG_DESCRIPTION,
|
|
|
|
author=project.AUTHOR_NAME,
|
|
|
|
author_email=project.AUTHOR_EMAIL,
|
|
|
|
url=project.URL,
|
|
|
|
license=project.LICENSE,
|
|
|
|
packages=find_packages(exclude=["tests*"]),
|
|
|
|
install_requires=reqs,
|
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
|
|
|
"supysonic-cli=supysonic.cli:main",
|
|
|
|
"supysonic-daemon=supysonic.daemon:main",
|
2017-10-25 20:15:14 +00:00
|
|
|
]
|
2019-06-29 15:25:44 +00:00
|
|
|
},
|
|
|
|
zip_safe=False,
|
|
|
|
include_package_data=True,
|
|
|
|
test_suite="tests.suite",
|
|
|
|
tests_require=["lxml"],
|
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Framework :: Flask",
|
|
|
|
"Intended Audience :: End Users/Desktop",
|
|
|
|
"Intended Audience :: System Administrators",
|
|
|
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
|
|
"Programming Language :: Python :: 2",
|
|
|
|
"Programming Language :: Python :: 2.7",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.5",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
2019-07-13 13:01:59 +00:00
|
|
|
"Programming Language :: Python :: 3.7",
|
2019-06-29 15:25:44 +00:00
|
|
|
"Topic :: Multimedia :: Sound/Audio",
|
|
|
|
],
|
|
|
|
)
|