-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (42 loc) · 954 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
37
38
39
40
41
42
43
44
45
46
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
requires = [
'dash',
'dash-bootstrap-components',
'pydicom',
'PyPubSub',
'watchdog',
'numpy',
'sortedcontainers',
'plotly',
'pandas',
'retry',
'redis',
'pyyaml',
'jsonpath-ng',
'dash_auth',
'nibabel',
'tabulate'
]
about = dict()
with open(os.path.join(here, 'scanbuddy', '__version__.py'), 'r') as f:
exec(f.read(), about)
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
author=about['__author__'],
author_email=about['__author_email__'],
url=about['__url__'],
packages=find_packages(),
package_data={
'': ['*.yaml', '*.tcss', '*.mp3']
},
include_package_data=True,
scripts=[
'scripts/start.py',
'scripts/simulator.py'
],
install_requires=requires
)