-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (61 loc) · 1.65 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
64
65
66
67
68
69
70
[project]
name = "enpass2onepassword"
version = "0.3.1"
description = "Tool to migrate from Enpass to 1Password"
authors = [{ name = "Christian Mäder", email = "mail@cimnine.ch" }]
requires-python = "~=3.10"
readme = "README.md"
license = "GPL-3.0-or-later"
keywords = [
"1password",
"enpass",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Desktop Environment",
"Topic :: Office/Business",
"Topic :: Utilities",
]
dependencies = [
"click>=8.1.8,<9",
"onepassword-sdk>=0.1.5,<0.2",
"aiostream>=0.6.4,<0.7",
"pyrate-limiter>=3.7.0,<4",
"wakepy>=0.10.1,<0.11",
]
[project.urls]
Repository = "/~https://github.com/cimnine/enpass2onepassword"
[project.scripts]
enpass2onepassword = "enpass2onepassword.__main__:main"
[dependency-groups]
dev = [
"black>=24.10.0,<25",
"isort>=5.13.2,<6",
"flake8>=7.1.1,<8",
"pytest>=8.3.4,<9",
"pytest-aio>=1.9.0,<2",
"ruff>=0.9.0",
]
[tool.hatch.build.targets.sdist]
include = ["enpass2onepassword"]
[tool.hatch.build.targets.wheel]
include = ["enpass2onepassword"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
[tool.isort]
profile = "black"
extend_skip = ["megalinter-reports"]
skip_gitignore = true
[virtualenvs]
create = true
in-project = true