-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.45 KB
/
setup.py
File metadata and controls
47 lines (42 loc) · 1.45 KB
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
47
# -*- coding: utf-8 -*-
# Learn more: https://github.com/oftatkofta/cellocity
from setuptools import setup, find_packages
with open('readme.md') as f:
readme = f.read()
setup(
name='cellocity',
version='1.0.2',
description='Velocity and vector analysis of microscopy data',
long_description=readme,
long_description_content_type='text/markdown',
install_requires=[
"docutils>=0.16",
"tifffile==2020.2.16",
"opencv-python>4.2.0",
"cython>=0.29.19",
"OpenPIV==0.22.2",
"numpy>=1.18.1",
"pandas>=1.0.1",
"matplotlib>=3.2.1",
"seaborn>=0.10.1",
"sphinxcontrib-bibtex==1.0.0"
],
author='Jens Eriksson',
author_email='jens.eriksson@imbim.uu.se',
url='https://github.com/oftatkofta/cellocity',
license="GPLv3",
packages=find_packages(exclude=('tests', 'docs', '.idea')),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
],
python_requires='>=3.6',
project_urls={
'Documentation': 'https://cellocity.readthedocs.io/en/latest/',
'Research group': 'https://www.imbim.uu.se/research-groups/infection-and-defence/sellin-mikael/',
'Source': 'https://github.com/oftatkofta/cellocity',
},
)