-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
executable file
·66 lines (60 loc) · 1.81 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
[build-system]
requires = ["setuptools >= 74.1.2", "versioneer", "tomli; python_version < \"3.11\"", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scalable"
dynamic = ["version"]
description = "Assist with running models on job queing systems like Slurm"
authors = [
{ name = "Shashank Lamba", email = "[email protected]" },
{ name = "Pralit Patel", email = "[email protected]" }
]
maintainers = [
{ name = "Shashank Lamba", email = "[email protected]" }
]
readme = "README.md"
license = {file = "LICENSE.md"}
requires-python = ">=3.9"
dependencies = [
"cryptography >= 42.0.8",
"dask >= 2022.02.0",
"dill >= 0.3.8",
"diskcache >= 5.6.3",
"distributed >= 2022.02.0",
"joblib >= 1.3.2",
"xxhash >= 3.4.1",
"versioneer >= 0.29",
"numpy >= 1.26.4",
"pandas >= 2.2.3"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: System :: Distributed Computing",
"License :: OSI Approved :: BSD License",
"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 :: Only",
]
[project.optional-dependencies]
test = [
"cryptography",
"pytest",
"pytest-asyncio",
]
[project.urls]
"Github" = "https://github.com/JGCRI/scalable/tree/master/scalable"
[project.scripts]
scalable_bootstrap = "scalable.utilities:run_bootstrap"
[tool.setuptools.package-data]
scalable = ["scalable_bootstrap.sh", "Dockerfile"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "scalable/_version.py"
versionfile_build = "scalable/_version.py"
tag_prefix = ""
parentdir_prefix = "scalable-"