-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 984 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 984 Bytes
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
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "histomics_detect"
readme = "README.rst"
requires-python = ">=3.6"
authors = [{name = "Lee A. D. Cooper", email = "lee.cooper@northwestern.edu"}]
maintainers = [{name = "Lee A. D. Cooper", email = "lee.cooper@northwestern.edu"}]
keywords = ["histomics_detect", "HistomicsDetect"]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition",
]
dependencies = [
"matplotlib",
"numpy",
"pandas",
"Pillow",
"pooch",
"pyyaml",
"scipy",
"tensorflow>=2.4",
]
dynamic = ["version", "description"]
[project.urls]
Source = "https://github.com/DigitalSlideArchive/HistomicsDetect"
[project.scripts]
flit = "flit:main"