Skip to content
Snippets Groups Projects
Commit e641727f authored by Alán Muñoz's avatar Alán Muñoz
Browse files

tweak(setup): remove setup.py

parent de64b664
No related branches found
No related tags found
No related merge requests found
from setuptools import find_packages, setup
print("find_packages outputs ", find_packages("aliby"))
setup(
name="aliby",
version="0.1.2",
packages=find_packages(),
# package_dir={"": "aliby"},
# packages=['aliby', 'aliby.io'],
# include_package_data=True,
url="",
license="",
author="Diane Adjavon",
author_email="diane.adjavon@ed.ac.uk",
description="Core utilities for microscopy pipeline",
python_requires=">=3.7",
install_requires=[
"numpy",
"dask",
"pathos",
"tqdm",
"pandas",
"scikit-image",
"opencv-python",
"requests_toolbelt",
"h5py==2.10",
"tables",
"imageio==2.8.0",
"omero-py>=5.6.2",
"pathos",
"zeroc-ice==3.6.5",
"tensorflow>=1.15,<=2.3",
"aliby-agora",
"aliby-argo",
"aliby-baby",
"aliby-extraction",
"aliby-post",
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment