-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 917 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 917 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
27
28
29
import os
from setuptools import setup
setup(
name = "opti_ssr",
version = "0.1.4",
packages=['opti_ssr'],
install_requires=[
'numpy',
'pyquaternion'
],
author = "Opti-SSR developers",
author_email = "f.immohr@outlook.com",
description = ("Using an OptiTrack system for different applications "
"of the SoundScape Renderer"),
license = "MIT",
keywords = "optitrack motive natnet ssr soundscaperenderer".split(),
url = "https://github.com/OptiTools/opti_ssr-examples",
long_description=open('README.rst').read(),
platforms='any',
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
],
)