-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (91 loc) · 2.41 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (91 loc) · 2.41 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "asana-api-cli"
version = "3.3.0"
description = "Command-line wrapper around the official Asana Python SDK"
authors = [{name = "Masanao Izumo"}]
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
keywords = ["asana", "cli", "python-asana"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Office/Business :: Groupware",
"Topic :: Utilities",
]
dependencies = [
"click>=8.0",
"jq>=1.6",
"tabulate>=0.9",
"asana>=5.0.2,<6",
]
[project.urls]
Homepage = "https://github.com/izumo-m/asana-api-cli"
Repository = "https://github.com/izumo-m/asana-api-cli"
Issues = "https://github.com/izumo-m/asana-api-cli/issues"
Changelog = "https://github.com/izumo-m/asana-api-cli/blob/main/CHANGELOG.md"
[project.scripts]
asana-api = "asana_api_cli.cli:main"
[dependency-groups]
dev = [
"ruff>=0.15",
"basedpyright>=1.39",
"pytest>=9,<10",
"build>=1.5,<2",
"twine>=6.2,<7",
"vermin>=1.8,<2",
"vcrpy>=8",
"pytest-recording>=0.13",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
target-version = "py310"
line-length = 100
# Generated python-asana scripts pinned as golden snapshots; they use repr/pprint
# literal style and are validated by ``compile()`` in the snapshot test, not by
# this project's lint config.
extend-exclude = ["tests/fixtures/generate_python"]
[tool.ruff.format]
docstring-code-format = true
quote-style = "double"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "N", "B", "ISC", "G", "SIM", "Q"]
ignore = ["SIM102"]
unfixable = ["F401"] # do not auto-fix unused imports
[tool.ruff.lint.isort]
sections.tests = ["tests", "tests.*"]
section-order = [
"future",
"standard-library",
"third-party",
"first-party",
"tests",
"local-folder"
]
[tool.vermin]
target = "3.10"
violations = true
backport = [
"typing_extensions",
"typing",
"dataclasses",
"asyncio",
"argparse",
"enum",
"importlib",
"zoneinfo"
]
no_parse_comments = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["tests"]
addopts = ""
disable_test_id_escaping_and_forfeit_all_rights_to_community_support = true