Skip to content

Commit

Permalink
Add more properties to setup.py to prepare for PyPI upload
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Feb 15, 2019
1 parent 79cc444 commit e54910d
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions setup.py
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",
],
)

0 comments on commit e54910d

Please sign in to comment.