Skip to content

Commit

Permalink
version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
meinardmueller committed Dec 15, 2020
1 parent cd19c63 commit d354601
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
*.pyc
*.pyc
.DS_Store

# ignore files created when preparing package for PyPi
build/
dist/
libfmp.egg-info/
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
from setuptools import setup
from setuptools import setup, find_packages


with open('README.md', 'r') as fdesc:
long_description = fdesc.read()

setup(
name='libfmp',
version='1.1.0',
version='1.1.1',
description='Python module for fundamentals of music processing',
author='Meinard Müller and Frank Zalkow',
author_email='meinard.mueller@audiolabs-erlangen.de',
url='http://audiolabs-erlangen.de/FMP',
download_url='https://github.com/meinardmueller/libfmp',
packages=['libfmp'],
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
Expand Down

0 comments on commit d354601

Please sign in to comment.