forked from PolusAI/image-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (40 loc) · 1.33 KB
/
setup.py
File metadata and controls
44 lines (40 loc) · 1.33 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
from setuptools import setup, find_packages
# with open("README.md", "r") as fh:
# long_description = fh.read()
with open("./polus/_plugins/VERSION", "r") as fh:
version = fh.read()
with open("./polus/_plugins/VERSION", "w") as fw:
fw.write(version)
package_data = ["_plugins/VERSION", "_plugins/manifests/*"]
setup(
name="polus-plugins",
version=version,
author="Nick Schaub",
author_email="nick.schaub@nih.gov",
description="API for Polus Plugins.",
# long_description=long_description,
# long_description_content_type="text/markdown",
# project_urls={
# 'Documentation': 'https://bfio.readthedocs.io/en/latest/',
# 'Source': 'https://github.com/polusai/polus-data'
# },
# entry_points={'napari.plugin': 'bfio = bfio.bfio'},
packages=find_packages(),
package_data={"polus": package_data},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=[
"pygithub>=1.55",
"docker>=5.0.3",
"pydantic>=1.8.2",
"python_on_whales>=0.34.0",
"tqdm>=4.64.0",
"xmltodict>=0.12.0",
"fsspec>=2021.11.0",
],
)