forked from mariusvniekerk/condax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (52 loc) · 1.59 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
[tool.poetry]
name = "condax"
version = "1.1.2"
description = "Install and run applications packaged with conda in isolated environments"
authors = [
"Marius van Niekerk <marius.v.niekerk@gmail.com>",
"Abraham Murciano <abrahammurciano@gmail.com>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/mariusvniekerk/condax"
repository = "https://github.com/mariusvniekerk/condax"
documentation = "https://mariusvniekerk.github.io/condax/"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Systems Administration",
]
[tool.poetry.dependencies]
python = "^3.7"
click = "^8.1.3"
requests = "^2.28.1"
userpath = "^1.8.0"
PyYAML = "^6.0"
importlib-metadata = "^4.12.0"
rainbowlog = "^2.0.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
coverage = "^6.4.3"
black = "^22.6.0"
mypy = "^0.971"
re-ver = "^0.5.0"
types-PyYAML = "^6.0.11"
types-requests = "^2.28.8"
[tool.poetry.scripts]
condax = "condax.cli.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"