-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (48 loc) · 1.85 KB
/
pyproject.toml
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
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "myofinder"
dynamic = ["readme", "dependencies"]
version = "1.0.10"
description = "Automatic calculation of the fusion index by AI segmentation"
license = {file = "LICENSE"}
keywords = ["segmentation", "fusion index", "automation", "muscle culture"]
requires-python = ">=3.7,<3.11"
authors = [{name = "Tissue Engineering Lab", email = "[email protected]"}]
maintainers = [{name = "Antoine Weisrock", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Image Recognition"
]
[project.urls]
Homepage = "https://github.com/TissueEngineeringLab/MyoFInDer"
Documentation = "https://tissueengineeringlab.github.io/MyoFInDer/"
Repository = "https://github.com/TissueEngineeringLab/MyoFInDer.git"
Issues = "https://github.com/TissueEngineeringLab/MyoFInDer/issues"
Download = "https://pypi.org/project/myofinder/#files"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = false
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "requirements.txt"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["myofinder*"]
exclude = []
namespaces = false
[tool.setuptools.package-data]
myofinder = [
"app_images/*"
]