-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.16 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
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["dargus"]
[project]
name = "dargus"
version = "1.5.0"
description = "A Python engine for testing and benchmarking REST web services"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.6"
license = {file = "LICENSE"}
authors = [
{name="Daniel Perez-Gil", email="daniel.perez@zettagenomics.com"}
]
maintainers = [
{name="Daniel Perez-Gil", email="daniel.perez@zettagenomics.com"}
]
keywords = ["opencb", "argus", "dargus", "rest", "webservices", "testing"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
]
dependencies = [
'requests >= 2.28.2',
'pyyaml >= 6.0',
'json2html >= 1.3.0',
'seaborn >= 0.13.2',
'scipy >= 1.12.0',
'pandas >= 2.2.0',
'numpy >= 1.26.4',
'matplotlib >= 3.8.3'
]
[project.urls]
"Homepage" = "https://github.com/opencb/argus"
[project.scripts]
dargus = "dargus:argus_cli.main"