-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (68 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (68 loc) · 1.58 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "commcare-cloud"
version = "0.0.0"
description = "A tool for managing commcare deploys."
license = "BSD-3-Clause"
requires-python = "~=3.10.0"
dependencies = [
"ansible~=4.3",
"ansible-inventory==0.6.4",
"ansible-vault==2.1.0",
"attrs",
"boto3",
"clint",
"couchdb-cluster-admin",
"cryptography",
"datadog>=0.2.0",
"dimagi-memoized>=1.1.0",
"dnspython",
"jinja2-cli",
"jsonobject",
"netaddr",
"packaging",
"passlib",
"pycryptodome>=3.6.6",
"PyGithub",
"pytz",
"setuptools<81",
"sh",
"simplejson",
"tabulate",
]
[project.scripts]
commcare-cloud = "commcare_cloud.commcare_cloud:main"
cchq = "commcare_cloud.commcare_cloud:main"
manage-commcare-cloud = "commcare_cloud.manage_commcare_cloud.manage_commcare_cloud:main"
ansible-lint-cloud = "commcare_cloud.ansible_lint:main"
[dependency-groups]
test = [
"ansible-lint==5.4.0",
"docopt",
"pytest",
"pytest-unmagic>=1.1.0",
"requests-mock",
]
dev = [
"ipdb",
"pdbp",
{include-group = "test"},
]
[tool.pytest.ini_options]
testpaths = ["tests", "src"]
python_files = ["test_*.py"]
pythonpath = ["."] # makes top-level `tests` package importable
addopts = [
'--ignore=src/commcare_cloud/manage_commcare_cloud/test_environments.py',
'--strict-markers',
]
filterwarnings = [
'error:.* used magic fixture:UserWarning',
]
[tool.hatch.build.targets.wheel]
packages = ["src/commcare_cloud"]
artifacts = [
"src/commcare_cloud/.bash_completion",
]