This repository has been archived by the owner on Jul 28, 2023. It is now read-only.
forked from cbini/fpodms-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.66 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
[project]
name = "fpodms-sync"
version = "0.1.0"
description = ""
authors = [
{ name = "Charlie Bini", email = "[email protected]" },
]
requires-python = ">=3.9"
license = { text = "GPL-3.0-or-later" }
dependencies = [
"fpodms>=0.4.0",
"pandas>=1.5.1",
"google-cloud-storage>=2.5.0",
"datarobot @ file:///${PROJECT_ROOT}/../datarobot",
]
dynamic = ["dependencies"]
[project.optional-dependencies]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.pdm.build]
package-dir = "src"
includes = ["src/fpodms-sync/*"]
[tool.pdm.dev-dependencies]
dev = ["pytest"]
[tool.pdm.scripts]
_.env_file = ".env"
post_lock = { shell = "pdm export -f requirements -o requirements.txt", help = "Export the locked packages set to requirements.txt" }
clean-build = { shell = "bash .pdm/scripts/clean-build.sh", help = "remove build artifacts" }
clean-pyc = { shell = "bash .pdm/scripts/clean-pyc.sh", help = "remove Python file artifacts" }
clean-test = { shell = "bash .pdm/scripts/clean-test.sh", help = "remove test and coverage artifacts" }
clean = { shell = "pdm run clean-build && pdm run clean-pyc && pdm run clean-test", help = "remove all build, test, coverage and Python artifacts" }
docs-build = { shell = "mkdocs build", help = "Build the MkDocs documentation" }
docs-serve = { shell = "mkdocs serve", help = "Run the builtin development server" }
docs-deploy = { shell = "mkdocs gh-deploy", help = "Deploy your documentation to GitHub Pages" }
test = { shell = "pdm run pytest", help = "run tests with the default Python" }
extract = { call = "fpodms_sync.extract:main" }
sync-students = { call = "fpodms_sync.sync_students:main" }