-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 808 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
from setuptools import setup
# architecture
pkg=[
"tobi",
"tobi.backend",
"tobi.utils",
"tobi.protocol",
"tobi.results",
"tobi.system",
"tobi.utils",
]
# non python data to keep
pkg_data={}
setup(
name='tomoBIMMS',
version='0.0.2',
description='BIMMS multiplexing python API',
long_description = 'file: README.md',
author='Thomas Couppey - Louis Regnacq - Florian Kolbl',
packages=pkg,
package_data=pkg_data,
include_package_data=True,
url = 'https://github.com/ThomasCouppey/tomoBIMMS.git',
classifiers =[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
],
install_requires=['numpy','andi-py','matplotlib','scipy', 'bimms', 'pyEIT'], #external packages as dependencies
python_requires = '>=3.6',
)