-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.52 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
import os
from setuptools import setup
from noisekit import __VERSION__
BASEDIR_PATH = os.path.abspath(os.path.dirname(__file__))
setup(
name="noisekit",
version=__VERSION__,
author="Geoffrey GUERET",
author_email="[email protected]",
description="noisekit is a noise toolkit.",
long_description=open(os.path.join(BASEDIR_PATH, "README.md"), "r").read(),
url="https://github.com/ggueret/noisekit",
license="MIT",
packages=["noisekit", "noisekit.audio", "noisekit.audio.dummy", "noisekit.audio.sound"],
python_requires=">=3.5",
install_requires=open(os.path.join(BASEDIR_PATH, "requirements.txt"), "r").read().splitlines(),
include_package_data=True,
entry_points={
"console_scripts": {
"noisekit = noisekit.__main__:main",
}
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Pelican",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Capture/Recording",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)