1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 10:51:04 +00:00
supysonic/setup.py

16 lines
392 B
Python
Raw Normal View History

2017-08-07 09:04:00 +00:00
# This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API.
#
# Copyright (C) 2013-2021 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
from setuptools import setup
if __name__ == "__main__":
setup(
test_suite="tests.suite",
tests_require=["lxml"],
)