-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (52 loc) · 1.73 KB
/
setup.py
File metadata and controls
61 lines (52 loc) · 1.73 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# coding=utf-8
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
VERSION = "1.3"
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to pytest")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(["--junitxml", "junit_results.xml"])
sys.exit(errno)
setup(
name='pybinsim',
version=VERSION,
license='MIT',
author='Annika Neidhardt, Florian Klein, Thomas Koellmer',
author_email='thomas.koellmer@tu-ilmenau.de',
url='https://github.com/pyBinSim/pyBinSim',
tests_require=['pytest', 'backoff >= 2.2.1'],
cmdclass={'test': PyTest},
install_requires=[
"numpy >= 1.19.2",
"sounddevice >= 0.4.1",
"torch >= 1.10.2",
"pyserial >= 3.4",
"pytest >= 6.1.1",
"python-osc >= 1.7.4",
"Soundfile >= 0.10.3.post1",
"pyzmq >= 22.3.0",
],
description='Real-time dynamic binaural synthesis with head tracking.',
long_description=open('README.rst').read(),
packages=['pybinsim'],
include_package_data=True,
platforms='any',
data_files=[],
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Multimedia :: Sound/Audio',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License'
],
python_requires='>=3.9'
)