forked from ideoforms/pylive
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (29 loc) · 936 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (29 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
from setuptools import setup
#------------------------------------------------------------------------
# Generate a PyPI-friendly RST file from our markdown README.
#------------------------------------------------------------------------
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
long_description = None
setup(
name = 'pylive',
version = '0.1.5',
description = 'Python remote control of Ableton Live',
long_description = long_description,
author = 'Daniel Jones',
author_email = 'dan-pylive@erase.net',
url = 'https://github.com/ideoforms/pylive',
packages = ['live'],
install_requires = ['pyliblo >= 0.9.1'],
keywords = ('sound', 'music', 'ableton', 'osc'),
classifiers = [
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Artistic Software',
'Topic :: Communications',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers'
]
)