-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (35 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
45 lines (35 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "geojson2xml"
version = "0.1.0"
description = "A tool to convert GeoJSON files to ImageScope-compatible XML files."
readme = "README.md"
license = {file = "LICENSE" }
authors = [
{ name = "Valentina Matos-Romero", email = "vmatosr1@jh.edu" },
{ name = "Ashley Kiemen", email = "kiemen@jhmi.edu" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
]
keywords = ["medical imaging", "image labeling", "machine learning", "deep learning", "tissue labeling"]
dependencies = [
"xmltodict>=0.13.0",
"jsonschema>=4.17.3",
"numpy>=1.21.0",
"notebook>=6.0.0"
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/Kiemen-Lab/GeoJSON2XML"
Documentation = "https://github.com/Kiemen-Lab/GeoJSON2XML#readme"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
include = ["*.ipynb"]
[project.scripts]
CODAvision = "GeoJSON2XML:main"