forked from open-research/sumatra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
104 lines (85 loc) · 2.09 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
95
96
97
98
99
100
101
102
103
104
[project]
name = "Sumatra"
version = "0.8.0"
authors = [
{name = "Sumatra authors and contributors", email = "[email protected]"}
]
description = "A tool for automated tracking of computation-based scientific projects"
readme = "README.rst"
requires-python = ">=3.9"
license = "BSD-2-Clause"
license-files = ["LICENSE"]
keywords = ["computational science", "simulation", "analysis", "project management"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering"
]
dependencies = [
"setuptools",
"parameters",
"pyyaml"
]
[project.scripts]
smt = "sumatra.cli:smt"
smtweb = "sumatra.cli:smtweb"
[project.urls]
homepage = "https://neuralensemble.org/sumatra"
documentation = "https://sumatra.readthedocs.io"
repository = "https://github.com/open-research/sumatra"
download = "http://pypi.python.org/pypi/sumatra"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
git = ["GitPython"]
hg = ["mercurial", "hgapi"]
web = [
"docutils",
"Django<6"
]
remote = ["httplib2"]
postgres = ["psycopg2-binary"]
mysql = ["mysqlclient"]
latex = ["jinja2"]
sphinx = ["docutils"]
mpi = ["mpi4py"]
docs = [
"docutils",
"sphinx",
"sphinxawesome-theme"
]
default = [
"sumatra[web,git,remote]"
]
test = [
"sarge",
"numpy",
"scipy",
"matplotlib",
"pillow",
"pytest",
"pytest-cov",
"flake8",
"selenium",
"coveralls"
]
dev = [
"sumatra[web,git,hg,remote,postgres,mysql,latex,mpi,docs,test]",
"build",
"twine",
"docker"
]
[tool.black]
line-length = 120