-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (77 loc) · 2.32 KB
/
pyproject.toml
File metadata and controls
84 lines (77 loc) · 2.32 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
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pythonanywhere"
version = "0.19.0"
description = "PythonAnywhere helper tools for users"
authors = [
{name = "PythonAnywhere LLP", email = "developers@pythonanywhere.com"}
]
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = ["pythonanywhere", "api", "cloud", "web", "hosting"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"docopt",
"packaging",
"python-dateutil",
"pythonanywhere-core>=0.3.0",
"requests",
"schema==0.7.2",
"snakesay==0.10.4",
"tabulate",
"typer",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-mypy",
"psutil",
"responses",
"virtualenvwrapper",
]
[project.scripts]
pa = "cli.pa:app"
[project.urls]
Homepage = "https://github.com/pythonanywhere/helper_scripts"
Repository = "https://github.com/pythonanywhere/helper_scripts"
Issues = "https://github.com/pythonanywhere/helper_scripts/issues"
[tool.setuptools]
packages = ["cli", "pythonanywhere"]
script-files = [
"scripts/pa_autoconfigure_django.py",
"scripts/pa_create_scheduled_task.py",
"scripts/pa_create_webapp_with_virtualenv.py",
"scripts/pa_delete_scheduled_task.py",
"scripts/pa_delete_webapp_logs.py",
"scripts/pa_get_scheduled_task_specs.py",
"scripts/pa_get_scheduled_tasks_list.py",
"scripts/pa_install_webapp_letsencrypt_ssl.py",
"scripts/pa_install_webapp_ssl.py",
"scripts/pa_reload_webapp.py",
"scripts/pa_start_django_webapp_with_virtualenv.py",
"scripts/pa_update_scheduled_task.py",
]
[tool.pytest.ini_options]
addopts = "--tb=native"
markers = [
"slowtest: marks tests as one of slowest (deselect with '-m \"not slowtest\"')",
"tasks: marks test as one of related to tasks",
"files: marks test as one of related to files",
"students: marks test as one of related to students",
]
[tool.mypy]
ignore_missing_imports = true