-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 2.16 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (67 loc) · 2.16 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "noworkflow"
# dynamically loaded version; see below
dynamic = ["version", "readme"]
description = "Supporting infrastructure to run scientific experiments without a scientific workflow management system."
authors = [
{name = "Joao Pimentel", email = "jpimentel@ic.uff.br"},
{name = "Leonardo Murta", email = "leomurta@ic.uff.br"},
{name = "Vanessa Braganholo", email = "vanessa@ic.uff.br"},
{name = "Juliana Freire", email = "juliana.freire@nyu.edu"},
{name = "Arthur Paiva", email = "arthur.paiva@id.uff.br"},
{name = "Other collaborators"},
]
license = {text = "MIT"}
keywords = ["scientific", "experiments", "provenance", "python"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
dependencies = [
"pyposast",
"apted",
"future",
"SQLAlchemy>=1.4.29,<=1.4.47",
"parameterized",
"requests",
"ipykernel",
"zipp==3.15",
"importlib-metadata==6.4.1",
"typing-extensions>=4.5.0,<5",
"setuptools<72",
"nbformat",
"graphviz",
"flask"
]
[project.optional-dependencies]
demo = ["flask", "matplotlib", "numpy", "cython"]
notebook = ["pyposast", "ipython", "jupyter"]
all = [
"pyposast", "ipython", "jupyter", "pyswip-alt",
"matplotlib", "numpy", "cython"
]
[project.scripts]
now = "noworkflow:main"
[project.urls]
Homepage = "https://gems-uff.github.io/noworkflow/"
Repository = "https://github.com/gems-uff/noworkflow.git"
Issues = "https://github.com/gems-uff/noworkflow/issues"
[tool.setuptools.package-data]
noworkflow = [
"resources/**/*",
"now/vis/static/**/*",
"now/vis/templates/**/*"
]
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.dynamic]
version = {file = "src/noworkflow/resources/version.txt"}
readme = {file = "README.md", content-type = "text/markdown"}