-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 990 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
35
36
import platform
from setuptools import setup, find_packages
VERSION = '0.1'
# Not all installs work with linux. Some require manual installation. See README.
if platform.system() == 'Linux':
with open('requirements-linux.txt') as f:
requirements = f.read().splitlines()
else:
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('requirements-dev.txt') as f:
dev_requirements = f.read().splitlines()
setup(
name='PrePy',
version=VERSION,
description="""
PrePy:
A simple GUI for setting parameters and stimulating
Pain-evoked potentials via a Raspberry Pi.
""",
url='https://github.com/oken-cognitive-neuroscience-lab/PrePy',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=True,
scripts=[],
platforms='any',
setup_requires=[],
tests_require=dev_requirements,
install_requires=requirements,
entry_points={}
)