-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
63 lines (56 loc) · 1.25 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
[project]
name = 'condax'
description = 'Install and run applications packaged with conda in isolated environments'
readme = "README.md"
authors = [
{ name = 'Marius van Niekerk', email = 'marius.v.niekerk@gmail.com' }
]
license = 'MIT'
requires-python = '>=3.8'
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
"Topic :: System :: Installation/Setup",
]
dependencies = [
"click",
"requests",
"userpath",
"PyYAML",
"ensureconda",
"typer",
"pydantic >=2",
"pydantic-settings",
]
dynamic = ["version"]
[project.urls]
Homepage = 'https://github.com/mariusvniekerk/condax'
Documentation = 'https://mariusvniekerk.github.io/condax/'
[build-system]
requires = ["hatchling>=0.21.1", "hatch-vcs"]
build-backend = "hatchling.build"
[project.scripts]
condax = "condax.cli:cli"
[tool.hatch.version]
source = "vcs"
[tool.hatch.envs.default]
dependencies = [
"pytest",
"coverage",
"build",
"mypy",
"isort",
"black",
"types-PyYAML",
"types-requests",
"pre-commit",
"mkdocs",
"mkdocs-material",
"mkdocs-typer"
]
[tool.hatch.envs.default.scripts]
check = "mypy condax ; black . ; isort condax tests ; pytest"
[tool.isort]
profile = "black"