-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update internal documentation and string formatting
- Loading branch information
1 parent
63c3c93
commit 6f26175
Showing
12 changed files
with
163 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
channels: | ||
- defaults | ||
dependencies: | ||
- sphinx | ||
- sphinx_rtd_theme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,33 @@ | ||
from setuptools import setup | ||
|
||
version = open("sound_field_analysis/_version.py").readlines()[-1].split()[-1].strip("\"'") | ||
from setuptools import find_packages, setup | ||
|
||
setup( | ||
name='sound_field_analysis', | ||
version=version, | ||
description='Analyze, visualize and process sound field data recorded by spherical microphone arrays.', | ||
url='https://github.com/AppliedAcousticsChalmers/sound_field_analysis-py/', | ||
version=open('sound_field_analysis/_version.py').readlines()[-1].split()[-1].strip('"\''), | ||
license='GPLv3', | ||
# license='MIT', | ||
|
||
description='Analyze, visualize and process sound field data recorded by spherical microphone arrays.', | ||
long_description=open('README.rst', mode='r', encoding='utf-8').read(), | ||
keywords='sound field analysis spherical microphone array', | ||
|
||
author='QU Lab / Christoph Hohnerlein', | ||
# author='Chalmers University of Technology / Jens Ahrens', | ||
author_email='[email protected]', | ||
license='GPLv3', | ||
# author_email='[email protected]', | ||
|
||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
# 'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Science/Research', | ||
'Topic :: Multimedia :: Sound/Audio', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Programming Language :: Python :: 3', | ||
# 'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.7', | ||
'Operating System :: OS Independent', | ||
], | ||
keywords='sound field analysis spherical microphone array', | ||
|
||
python_requires='>=3.7', | ||
install_requires=[ | ||
'scipy', | ||
'numpy', | ||
|
@@ -27,9 +37,11 @@ | |
package_data={ | ||
'examples': ['examples'], | ||
}, | ||
|
||
extras_require={ | ||
'plotting': ['plotly'], | ||
'examples': ['jupyter'], | ||
}, | ||
packages=['sound_field_analysis'], | ||
|
||
packages=find_packages(), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
"""Version information.""" | ||
__version__ = '2019.8.15' | ||
__version__ = '2019.11.7' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.