-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 732 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='pyRealParser',
version='0.1.0',
packages=['pyRealParser'],
url='https://github.com/drs251/pyRealParser',
license='MIT',
platforms=['Windows', 'Mac OS X', 'Linux'],
author='Daniel R. Stephan',
author_email='danrstephan@gmail.com',
keywords = ['music', 'chords', 'irealpro', 'jazz'],
description='A Python package to read songs in the iRealPro fromat.',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Sound/Audio"]
)