-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.37 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
[project]
name = "dotenvhub"
version = "0.5.0"
description = "Terminal App to manage .env files written in Python powered by Textual"
readme = "README.md"
authors = [
{ name = "Zaloog", email = "[email protected]" }
]
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"platformdirs>=4.3.6",
"pyperclip>=1.9.0",
"textual>=0.89.1",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
Repository = "https://github.com/Zaloog/dotenvhub"
Changelog = "https://github.com/Zaloog/dotenvhub/blob/main/CHANGELOG.md"
[project.scripts]
dot = "dotenvhub.app:run"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "file"
addopts = "--cov src/dotenvhub --cov-report term-missing --verbose --color=yes"
testpaths = ["tests"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pre-commit>=4.0.1",
"pytest-cov>=6.0.0",
"pytest>=8.3.4",
"textual-dev>=1.7.0",
"pytest-asyncio>=0.25.0",
]