-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
50 lines (48 loc) · 1.98 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
43
44
45
46
47
48
49
50
from setuptools import find_packages, setup
import pysofaconventions.SOFAAPI
setup(
name='pysofaconventions',
version=pysofaconventions.SOFAAPI.getAPIVersion(),
description='pysofaconventions: python implementation of the SOFA Convention',
author='Andres Perez-Lopez',
author_email='[email protected]',
url='https://andresperezlopez.github.io/pysofaconventions/',
packages=find_packages(),
long_description='pysofaconventions: python implementation of the Spatially Oriented Format for Acoustics Convention',
keywords='SOFA HRTF binaural Ambisonics',
project_urls={
'Project page': 'https://andresperezlopez.github.io/pysofaconventions/',
'Documentation': 'https://pysofaconventions.readthedocs.io/',
'Source': 'https://github.com/andresperezlopez/pysofaconventions',
},
license='BSD-3-Clause',
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
install_requires=[
'netCDF4'
],
extras_require={
'docs': [
'sphinx==1.2.3', # autodoc was broken in 1.3.1
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
],
# 'tests': ['backports.tempfile', 'pysoundfile']
}
)