-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (24 loc) · 1.38 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
from setuptools import setup, find_packages
with open("README.rst") as f:
long_description = f.read()
setup(name="sumpf",
version="0.17",
description="A signal processing package with a focus on acoustics",
long_description=long_description,
url="https://github.com/JonasSC/SuMPF",
author="Jonas Schulte-Coerne",
license="GNU Lesser General Public License v3 or later (LGPLv3+)",
classifiers=["Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Application Frameworks"],
keywords="signal-processing acoustics",
packages=find_packages(exclude=["documentation", "tests", "docs"]),
install_requires=["numpy", "connectors", "scipy", "SoundFile", "JACK-Client", "numexpr"],
extras_require={"dev": ["pytest-cov", "pylint"],
"test": ["pytest", "hypothesis"]},
project_urls={"Documentation": "https://sumpf.readthedocs.io/en/latest/",
"Bug Reports": "https://github.com/JonasSC/SuMPF/issues",
"Source": "https://github.com/JonasSC/SuMPF"})