-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (36 loc) · 1.36 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
# External Libraries
from setuptools import setup, find_packages
# IzunaDSP
from izunadsp import misc
with open("README.rst") as file:
README = file.read()
with open("requirements.txt") as file:
REQUIREMENTS = file.readlines()
if __name__ == '__main__':
setup(
name="izunadsp",
author="izunadevs",
author_email="[email protected]",
maintainer="martmists",
maintainer_email="[email protected]",
license="MIT",
zip_safe=False,
version=misc.__version__,
description=misc.description,
long_description=README,
url="https://github.com/IzunaDevs/IzunaDSP",
packages=find_packages(),
install_requires=REQUIREMENTS,
keywords=["audio", "audio processing", "DSP"],
classifiers=[
"Development Status :: 2 - Pre-Alpha", "Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
"Topic :: Software Development :: Libraries :: Python Modules"
],
python_requires=">=3.0")