-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
52 lines (48 loc) · 1.29 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools_scm>=7",
"setuptools>=61",
"toml",
"wheel",
]
[project]
urls = { docs = 'http://tike.readthedocs.org', source = 'http://github.com/tomography/tike.git'}
authors = [
{name = "Doga Gursoy", email = "[email protected]"},
{name = "Daniel Ching", email = "[email protected]"},
{name = "Xiaodong Yu"},
{name = "Viktor Nikitin"},
{name = "Ash Tripathi"},
]
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
]
dependencies = [
# https://github.com/cupy/cupy/issues/8184
"cupy >=10.0, !=10.3.0, !=13.0.*",
'importlib_resources; python_version<"3.9"',
"matplotlib ==3.*",
"numpy >=1.17",
"opencv-python >=3.4, <5.0",
"scipy >=1.6.0",
]
license = {text = "BSD 3-Clause License"}
name = "tike"
requires-python = "~=3.8"
dynamic = ["version", "readme"]
optional-dependencies = {mpi = [
"mpi4py ==3.*"
]}
[tool.setuptools.dynamic]
readme = {file = ["README.rst", "LICENSE"]}
[tool.setuptools.packages.find]
where = ["src"]
include = ["tike*"]
[tool.setuptools_scm]