-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split into multiple namespace packages
- Loading branch information
Showing
128 changed files
with
276 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[project] | ||
name = "diracx-api" | ||
description = "TODO" | ||
# readme = "../README.md" | ||
requires-python = ">=3.10" | ||
keywords = [] | ||
license = {text = "GPL-3.0-only"} | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: System :: Distributed Computing", | ||
] | ||
dependencies = [ | ||
"diracx-client", | ||
"diracx-core", | ||
"httpx", | ||
] | ||
dynamic = ["version"] | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[build-system] | ||
requires = ["setuptools>=61", "wheel", "setuptools_scm>=8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
root = ".." |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[project] | ||
name = "diracx-cli" | ||
description = "TODO" | ||
# readme = "../README.md" | ||
requires-python = ">=3.10" | ||
keywords = [] | ||
license = {text = "GPL-3.0-only"} | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: System :: Distributed Computing", | ||
] | ||
dependencies = [ | ||
"diraccfg", # TODO: Should this be an extra | ||
"diracx-api", | ||
"diracx-client", | ||
"diracx-core", | ||
"gitpython", | ||
"pydantic", | ||
"rich", | ||
"typer", | ||
"pyyaml", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.scripts] | ||
dirac = "diracx.cli:app" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[build-system] | ||
requires = ["setuptools>=61", "wheel", "setuptools_scm>=8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
root = ".." |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[project] | ||
name = "diracx-client" | ||
description = "TODO" | ||
# readme = "../README.md" | ||
requires-python = ">=3.10" | ||
keywords = [] | ||
license = {text = "GPL-3.0-only"} | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: System :: Distributed Computing", | ||
] | ||
dependencies = [ | ||
"azure-core", | ||
"diracx-core", | ||
"isodate", | ||
"requests", | ||
] | ||
dynamic = ["version"] | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[build-system] | ||
requires = ["setuptools>=61", "wheel", "setuptools_scm>=8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
root = ".." |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[project] | ||
name = "diracx-core" | ||
description = "Common code used by all DiracX packages" | ||
# readme = "../README.md" | ||
requires-python = ">=3.10" | ||
keywords = [] | ||
license = {text = "GPL-3.0-only"} | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: System :: Distributed Computing", | ||
] | ||
dependencies = [ | ||
"authlib", | ||
"botocore", | ||
"cachetools", | ||
"fastapi", | ||
"gitpython", | ||
"pydantic", | ||
"pyyaml", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.entry-points."diracx"] | ||
properties_module = "diracx.core:properties" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[build-system] | ||
requires = ["setuptools>=61", "wheel", "setuptools_scm>=8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
root = ".." |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[project] | ||
name = "diracx-db" | ||
description = "TODO" | ||
# readme = "../README.md" | ||
requires-python = ">=3.10" | ||
keywords = [] | ||
license = {text = "GPL-3.0-only"} | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: System :: Distributed Computing", | ||
] | ||
dependencies = [ | ||
"dirac", | ||
"diracx-core", | ||
"fastapi", | ||
"opensearch-py", | ||
"pydantic", | ||
"sqlalchemy", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.entry-points."diracx.db.sql"] | ||
AuthDB = "diracx.db.sql:AuthDB" | ||
JobDB = "diracx.db.sql:JobDB" | ||
JobLoggingDB = "diracx.db.sql:JobLoggingDB" | ||
SandboxMetadataDB = "diracx.db.sql:SandboxMetadataDB" | ||
TaskQueueDB = "diracx.db.sql:TaskQueueDB" | ||
|
||
[project.entry-points."diracx.db.os"] | ||
JobParametersDB = "diracx.db.os:JobParametersDB" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[build-system] | ||
requires = ["setuptools>=61", "wheel", "setuptools_scm>=8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
root = ".." |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
src/diracx/db/sql/dummy/schema.py → diracx-db/src/diracx/db/sql/dummy/schema.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
[project] | ||
name = "diracx-routers" | ||
description = "TODO" | ||
# readme = "../README.md" | ||
requires-python = ">=3.10" | ||
keywords = [] | ||
license = {text = "GPL-3.0-only"} | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: System :: Distributed Computing", | ||
] | ||
dependencies = [ | ||
"aiobotocore", | ||
"authlib", | ||
"botocore", | ||
"cachetools", | ||
"dirac", | ||
"diracx-core", | ||
"diracx-db", | ||
"python-dotenv", # TODO: We might not need this | ||
"fastapi", | ||
"httpx", | ||
"pydantic", | ||
"sqlalchemy", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.entry-points."diracx.services"] | ||
jobs = "diracx.routers.job_manager:router" | ||
config = "diracx.routers.configuration:router" | ||
auth = "diracx.routers.auth:router" | ||
".well-known" = "diracx.routers.well_known:router" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[build-system] | ||
requires = ["setuptools>=61", "wheel", "setuptools_scm>=8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
root = ".." |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[project] | ||
name = "diracx-testing" | ||
description = "TODO" | ||
# readme = "../README.md" | ||
requires-python = ">=3.10" | ||
keywords = [] | ||
license = {text = "GPL-3.0-only"} | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: System :: Distributed Computing", | ||
] | ||
dependencies = [ | ||
"pytest", | ||
] | ||
dynamic = ["version"] | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[build-system] | ||
requires = ["setuptools>=61", "wheel", "setuptools_scm>=8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
root = ".." |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.