-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
30 lines (27 loc) · 808 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
29
30
#! /usr/bin/env python3
from setuptools import setup
with open('README.rst') as file:
long_description = file.read()
setup(
name='pymonome',
author='Artem Popov',
author_email='[email protected]',
url='https://github.com/artfwo/pymonome',
description='a monome serialosc client in python',
long_description=long_description,
version='0.11.2',
py_modules=['monome'],
include_package_data=True,
install_requires=[
'aiosc'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Software Development :: Libraries',
],
license='MIT'
)