-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
48 lines (45 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
[project]
name = "colmena"
version = "0.7.0"
authors = [
{ name = "Globus Labs", email = "[email protected]" },
{ name = "Logan Ward", email = "[email protected]" },
{ name = "Greg Pauloski", email = "[email protected]" },
{ name = "Yadu Babuji", email = "[email protected]" },
]
description = 'colmena: Intelligent Steerable Pipelines on HPC'
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE.txt" }
keywords = ["HPC", "AI", "Workflows"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: System :: Distributed Computing",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
]
dependencies = [
"parsl>=2022",
"pydantic>=2,<3",
"redis>=4.3",
"proxystore>=0.5.0,<0.8.0"
]
[tool.setuptools.packages.find]
include = ['colmena*']
[project.urls]
repository = "https://github.com/exalearn/colmena"
documentation = "https://colmena.readthedocs.io/"
[project.optional-dependencies]
globus = ['globus-compute-sdk>=1.0.5']
test = [
'flake8',
'pytest',
'pytest-timeout',
'pytest-mock',
'pytest-repeat',
'pytest-cov',
]