-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 989 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
31
32
33
34
from setuptools import setup, find_namespace_packages
setup(
name='avista',
use_scm_version=True,
description='Library for controlling A/V devices',
author='James Muscat',
author_email='[email protected]',
url='https://github.com/jamesremuscat/avista',
packages=find_namespace_packages('src', exclude=["*.tests"]),
package_dir={'': 'src'},
long_description="""\
avista is a library for controlling A/V devices such as video switchers. It
is a modernised rewrite of the avx library from the same author.
""",
setup_requires=['setuptools_scm'],
tests_require=[],
install_requires=[
'autobahn[serialization,twisted]',
'construct',
'mido',
'netaudio==0.0.10',
'pyserial',
'ratelimiter==1.2.0.post0',
'recordclass',
'throttle',
'treq'
],
entry_points={
'console_scripts': [
'avista-device=avista.runner:run'
],
}
)