-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (31 loc) · 1.26 KB
/
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
35
36
37
38
39
40
41
import os
from distutils.core import setup
def read(file):
return open( os.path.join(os.path.dirname(__file__), file) ).read()
setup(name='Protea',
version='0.1a',
description='Ashly digital audio products RS-232 interface library',
author='Sébastien Leblanc',
author_email='[email protected]',
url='https://github.com/sebleblanc/python-protea/',
license='MIT',
keywords='ashly protea ne24.24M 4.24C matrix processor interface rs-232',
long_description=read('README.md'),
packages=['protea'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Terminals :: Serial",
"Topic :: System :: Hardware :: Hardware Drivers",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
]
)