-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (55 loc) · 2.14 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
[build-system]
# setuptools version required for project configured entirely with pyproject.toml
requires = ["setuptools>=61.0.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "smttask"
authors = [
{name = "Alexandre René", email = "arene010@uottawa.ca"},
]
description="Task wrapper for the Sumatra API"
readme = "README.md"
requires-python = ">=3.9,<3.12" # With 3.12 we get `ImportError: cannot import name 'SafeConfigParser' from 'configparser'`
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
]
dependencies = [
"pydantic",
"numpy",
"pandas", # Used in smttask.view
#"sumatra[git]>=0.8dev0", # vendorized
#"psycopg2",
"scityping>=v0.6.5rc1", # 0.6.5 required for annex files + other fixes
#"parameters", # vendorized within sumatra
"click>=7.1", # Avoid bumping to v8 until Jupyter Book allows it
"tabulate",
"collections-extended", # For ordered set
"tqdm>=4.62",
"reorder_editable", # For added robustness when cloning projects; see _utils.py
"rich", # For the console UI
"GitPython", # Almost everyone will use git. Those using another VC system will know to install the required dependency.
"valconfig",
"dill" # Required by iotools
]
dynamic = ["version"]
[project.optional-dependencies]
viz = ["networkx", "holoviews", "bokeh"]
test = ["pytest", "scipy"]
docs = ["pydata-sphinx-theme", "myst-nb", "sphinx-click"]
[project.scripts]
smttask = "smttask.ui:cli"
[project.urls]
"Documentation" = "https://sumatratask.readthedocs.io/"
"Bug Tracker" = "https://github.com/alcrene/smttask/issues"
"Source" = "https://github.com/alcrene/smttask"
[tool.setuptools.packages.find]
where = ["src", "vendor/sumatra/src", "vendor/sumatra/vendor/parameters/src"]
namespaces = false
[tool.setuptools_scm]
write_to = "src/smttask/_version.py"