-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 852 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (24 loc) · 852 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name = 'pylive',
version = '0.4.0',
description = 'Python remote control of Ableton Live',
long_description = open("README.md", "r").read(),
long_description_content_type = "text/markdown",
author = 'Daniel Jones',
author_email = 'dan-pylive@erase.net',
url = 'https://github.com/ideoforms/pylive',
packages = find_packages(),
install_requires = ['python-osc'],
keywords = ('sound', 'music', 'ableton', 'osc'),
classifiers = [
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Artistic Software',
'Topic :: Communications',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers'
],
setup_requires = ['pytest-runner'],
tests_require = ['pytest', 'pytest-timeout']
)