-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 747 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (22 loc) · 747 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
from setuptools import setup, find_packages
def load_requires_from_file(filepath):
return [pkg_name.rstrip('\r\n') for pkg_name in open(filepath).readlines()]
exclude_packages = ['server/tests', 'client/tests']
TEST_REQUIREMENTS = [
'pytest',
'pytest-runner'
]
TEST_PATHS = ['server/tests', 'client/tests']
setup(name='autoRecorder',
version='0.0.1',
description='Automatic playing of recorder project',
packages=find_packages(exclude=exclude_packages),
setup_requires=['pytest-runner'],
tests_require=TEST_REQUIREMENTS,
entry_points="""
[console_scripts]
ARclient = client.main:main
ARserver = server.main:main
ARcntl = server.control:main
""",
)