-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (59 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
70 lines (59 loc) · 1.79 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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "sqre-codekit"
requires-python = ">=3.11.0"
description = "LSST Data Management SQuaRE code management tools"
license = {text = "MIT"}
readme = "README.md"
authors = [
{name="Rubin Observatory Data Management", email="dm-admin@lists.lsst.org"},
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Astronomy",
]
keywords = ["lsst"]
dependencies = [
"MapGitConfig",
"progressbar2",
"public",
"pygithub",
"pyyaml",
"requests",
"responses",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/lsst-sqre/sqre-codekit"
[project.optional-dependencies]
test = [
"pytest >= 3.2",
"flake8",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools]
zip-safe = true
license-files = ["COPYRIGHT", "LICENSE"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
[project.scripts]
github-auth = "codekit.cli.github_auth:main"
github-decimate-org = "codekit.cli.github_decimate_org:main"
github-fork-org = "codekit.cli.github_fork_org:main"
github-get-ratelimit = "codekit.cli.github_get_ratelimit:main"
github-list-repos = "codekit.cli.github_list_repos:main"
github-mv-repos-to-team = "codekit.cli.github_mv_repos_to_team:main"
github-tag-release = "codekit.cli.github_tag_release:main"
github-tag-teams = "codekit.cli.github_tag_teams:main"
[tool.pytest.ini_options]
addopts = "--ignore=tests_integration"