forked from shinybrar/skaha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (55 loc) · 1.7 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
[project]
name = "skaha"
version = "1.3.1"
requires-python = ">=3.8"
description = "Python Client for CANFAR Science Platform"
license = "MIT"
readme = "README.md"
keywords = ["skaha", "canfar", "python", "client", "container", "platform"]
authors =[
{"name"="Shiny Brar", "email"="[email protected]>"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"click>=8.1.7",
"defusedxml>=0.7.1",
"pydantic>=2.9.2",
"requests>=2.32.3",
"toml>=0.10.2",
"vos>=3.6.1.1",
]
[project.urls]
"homepage"="https://chimefrb.github.io/skaha/"
"repository"="https://github.com/chimefrb/skaha"
"documentation"="https://chimefrb.github.io/skaha/"
"changelog"="https://chimefrb.github.io/skaha/changelog/"
"issues"="https://github.com/chimefrb/skaha/issues"
[tool.uv]
dev-dependencies = [
"black>=23",
"mkdocs-git-revision-date-localized-plugin>=1.2.9",
"mkdocs-material>=9.5.41",
"mkdocstrings-python>=1",
"mypy>=1.12.0",
"pre-commit>=3",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"ruff>=0.6.9",
]