-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.39 KB
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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.setuptools_scm]
# For smarter version schemes and other configuration options,
# check out https://github.com/pypa/setuptools_scm
version_scheme = "no-guess-dev"
[tool.pdm]
package-dir = "src"
[project]
name = "python_one_password"
version = "0.1.2"
description = "Imports metadata from 1Password vaults and allows for bulk manipulation of tags"
authors = [
{name = "Matthew Watkins", email = "mwatkins@linuxfoundation.org"},
]
dependencies = [
"setuptools>=68.2.2",
"typer[all]~=0.9.0",
]
requires-python = ">=3.8"
readme = "README.rst"
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
[project.urls]
Homepage = "https://gerrit.linuxfoundation.org/infra/admin/repos/releng/python-one-password,general"
Source = "https://github.com/lfit/releng-python-one-password"
Documentation = "https://github.com/lfit/releng-python-one-password#readme"
Tracker = "https://github.com/lfit/releng-python-one-password/issues"
Download = "https://github.com/lfit/releng-python-one-password/tags"
Changelog = "https://gerrit.linuxfoundation.org/infra/q/project:releng/python-one-password"
[project.optional-dependencies]
testing = [
"pytest",
"pytest-cov",
"setuptools",
"typer",
]
[project.scripts]
python-one-password = "python_one_password.cli:run"