-
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more properties to setup.py to prepare for PyPI upload
- Loading branch information
Showing
1 changed file
with
17 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,24 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", "r") as readme_file: | ||
long_description = readme_file.read() | ||
|
||
setup( | ||
name="audiomentations", | ||
version="0.1", | ||
packages=find_packages(exclude=["tests"]), | ||
version="0.1.0", | ||
author="Iver Jordal", | ||
description="A library for audio data augmentation. Inspired by albumentations.", | ||
license="MIT", | ||
long_description=open("README.md").read(), | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/iver56/audiomentations", | ||
packages=find_packages(exclude=["tests"]), | ||
install_requires=["numpy>=1.13.0"], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
], | ||
) |