-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (38 loc) · 961 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
import pathlib
import sys
import os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
extra_link_args = []
libraries = []
library_dirs = []
include_dirs = []
exec(open('flimview/version.py').read())
setup(
name='flimview',
version=__version__,
description='A software framework to handle, visualize and analyze FLIM data',
long_description=README,
long_description_content_type='text/markdown',
author='Matias Carrasco Kind & COMI Lab',
author_email='[email protected]',
scripts=[],
packages=['flimview'],
license='License.txt',
url='https://github.com/Biophotonics-COMI/flimview',
install_requires=[
"scipy",
"numpy",
"matplotlib",
"sdtfile",
"pandas",
"tqdm",
"h5py",
"Pillow",
"pooch"
],
)