-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📝 🔖 Add code for upload to PyPi and update documentation (#5)
* 📝 change documentation for PyPi 🔖 add code for pypi * 📝 install on its own line * 📝 add bash code snippet.
- Loading branch information
Showing
4 changed files
with
40 additions
and
2 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,2 @@ | ||
[metadata] | ||
description-file = README.md |
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 |
---|---|---|
|
@@ -3,12 +3,25 @@ | |
setup( | ||
name="surfboard", | ||
version="0.1", | ||
description="The Novoic acoustic feature extraction package.", | ||
description="Novoic's audio feature extraction library https://novoic.com", | ||
url="http://github.com/novoic/surfboard", | ||
author="Raphael Lenain", | ||
author_email="[email protected]", | ||
license="GPL-3.0", | ||
packages=["surfboard"], | ||
keywords=[ | ||
"feature-extraction", | ||
"audio", | ||
"machine-learning", | ||
"audio-processing", | ||
"python", | ||
"speech-processing", | ||
"healthcare", | ||
"signal-processing", | ||
"alzheimers-disease", | ||
"parkinsons-disease", | ||
], | ||
download_url="https://github.com/novoic/surfboard/archive/v0.1.tar.gz", | ||
install_requires=[ | ||
"librosa==0.7.2", | ||
"pysptk==0.1.18", | ||
|
@@ -23,4 +36,15 @@ | |
], | ||
scripts=['bin/surfboard'], | ||
zip_safe=False, | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package | ||
'Intended Audience :: Developers', # Define that your audience are developers | ||
'Topic :: Software Development :: Build Tools', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', # Again, pick a license | ||
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
], | ||
) |