Skip to content

Commit

Permalink
Add README to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-hld committed Jun 17, 2019
1 parent cedc918 commit f8c847b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
import setuptools

# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()


setuptools.setup(name='spaudiopy',
version='0.1.1',
description='Spatial Audio Python Package',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/chris-hld/spaudiopy',
author='Chris Hold',
author_email='[email protected]',
Expand Down

0 comments on commit f8c847b

Please sign in to comment.