-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·28 lines (26 loc) · 928 Bytes
/
setup.py
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
#!/usr/bin/env python3
from setuptools import setup
setup(
name='supercollider',
version='0.0.6',
python_requires='>=3.9',
description='Interact with the SuperCollider audio synthesis engine',
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
author='Daniel Jones',
author_email='[email protected]',
url='https://github.com/ideoforms/supercollider',
packages=['supercollider'],
install_requires=['python-osc'],
keywords=('sound', 'music', 'supercollider', 'synthesis'),
classifiers=[
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis',
'Topic :: Artistic Software',
'Topic :: Communications',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers'
],
setup_requires=['pytest-runner'],
tests_require=['pytest']
)