-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
94 lines (84 loc) · 2.94 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = 'informatics'
version = '0.0.5rc1'
license = {file = "LICENSE"}
description = 'Framework of fast implementation data processing and operating pipelines'
readme = "README.rst"
authors = [
{ name="Chen Zhang", email="chen.zhang_06sept@foxmail.com" },
]
maintainers = [
{name = "Chen Zhang", email = "chen.zhang_06sept@foxmail.com"},
]
keywords = [
'mathematical statistics',
'Bayesian inference',
'artificial intellegence',
'amonly detection',
'scientific calculation',
'scientific computation',
'computer vision',
'anomaly detection',
'data processing',
'data visualization',
'pipeline framework',
]
requires-python = '>= 3.9'
dependencies = [
'numpy',
'scipy',
'dill',
'tensorly',
'pandas',
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Natural Language :: Chinese (Simplified)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Documentation :: Sphinx',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
]
[project.optional-dependencies]
ins = ['pillow', 'requests']
vis = ['pyqtgraph'] # suggest backend: PySide6, PyOpenGL, PyOpenGL_accelerate
med = ['pydicom', 'SimpleITK']
[project.urls]
Homepage = 'https://github.com/CubicZebra/informatics'
Release = 'https://github.com/CubicZebra/informatics/releases'
Documentation = 'https://informatics.readthedocs.io/en/latest/index.html'
Issues = 'https://github.com/CubicZebra/informatics/issues'
[build-system]
build-backend = 'setuptools.build_meta'
requires = ['setuptools', 'cython']
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
where = ["."] # ["."] by default
include = ["info*"]
namespaces = false # true by default