-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (23 loc) · 822 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
""" Set up SceneWalk Code"""
from setuptools import setup, find_packages
setup(
name='scenewalk',
version='1.0',
description='SceneWalk model of dynamic scan path generation',
author='Lisa Schwetlick',
author_email='[email protected]',
include_package_data=True,
packages=find_packages(),
install_requires=['numpy',
'pandas',
'seaborn',
'scipy',
'opencv_python',
#'arviz',
'pytest',
#'multiprocess',
'gitpython',
'pyyaml']
#'pydream']
#'PyDREAM @ git+ssh://[email protected]/lschwetlick/PyDREAM.git@lisa#egg=PyDREAM-0'], #external packages as dependencies
)