Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
37904fce
Unverified
Commit
37904fce
authored
Nov 29, 2024
by
Jakob Görgen
Browse files
added simbricks dependencies and black tool to pyproject.toml files
parent
23867991
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
50 additions
and
32 deletions
+50
-32
symphony/cli/pyproject.toml
symphony/cli/pyproject.toml
+5
-1
symphony/client/pyproject.toml
symphony/client/pyproject.toml
+5
-1
symphony/local/pyproject.toml
symphony/local/pyproject.toml
+7
-0
symphony/orchestration/pyproject.toml
symphony/orchestration/pyproject.toml
+6
-0
symphony/pyproject.toml
symphony/pyproject.toml
+8
-17
symphony/requirements.txt
symphony/requirements.txt
+1
-0
symphony/runner/pyproject.toml
symphony/runner/pyproject.toml
+9
-1
symphony/runtime/pyproject.toml
symphony/runtime/pyproject.toml
+6
-12
symphony/utils/pyproject.toml
symphony/utils/pyproject.toml
+3
-0
No files found.
symphony/cli/pyproject.toml
View file @
37904fce
...
...
@@ -20,6 +20,9 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[tool.black]
line-length
=
120
[build-system]
requires
=
["poetry-core>=1.0.0"]
build-backend
=
"poetry.core.masonry.api"
...
...
@@ -34,4 +37,5 @@ packages = [
]
[tool.poetry.dependencies]
typer
=
"0.13.1"
\ No newline at end of file
typer
=
"0.13.1"
simbricks-orchestration
=
"*"
symphony/client/pyproject.toml
View file @
37904fce
...
...
@@ -20,6 +20,9 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[tool.black]
line-length
=
120
[build-system]
requires
=
["poetry-core>=1.0.0"]
build-backend
=
"poetry.core.masonry.api"
...
...
@@ -34,4 +37,5 @@ packages = [
]
[tool.poetry.dependencies]
aiohttp
=
"3.9.5"
\ No newline at end of file
aiohttp
=
"3.9.5"
simbricks-orchestration
=
"*"
symphony/local/pyproject.toml
View file @
37904fce
...
...
@@ -20,6 +20,9 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[tool.black]
line-length
=
120
[build-system]
requires
=
["poetry-core>=1.0.0"]
build-backend
=
"poetry.core.masonry.api"
...
...
@@ -32,3 +35,7 @@ authors = [ "Jakob Görgen <jakob@simbricks.io>", ]
packages
=
[
{
include
=
"simbricks"
}
]
[tool.poetry.dependencies]
simbricks-orchestration
=
"*"
simbricks-runtime
=
"*"
symphony/orchestration/pyproject.toml
View file @
37904fce
...
...
@@ -20,6 +20,9 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[tool.black]
line-length
=
120
[build-system]
requires
=
["poetry-core>=1.0.0"]
build-backend
=
"poetry.core.masonry.api"
...
...
@@ -32,3 +35,6 @@ authors = [ "Jakob Görgen <jakob@simbricks.io>", ]
packages
=
[
{
include
=
"simbricks"
}
]
[tool.poetry.dependencies]
simbricks-utils
=
"*"
symphony/pyproject.toml
View file @
37904fce
...
...
@@ -23,22 +23,6 @@
[tool.black]
line-length
=
120
# [build-system]
# requires = ["setuptools>=64.00", "wheel"]
# build-backend = "setuptools.build_meta"
#
# [project]
# name = "simbricks_symphony"
# version = "0.1.0"
# description = "main project of simbricks python modules monorepo"
# dependencies = [
# "numpy>=1.21.0"
# ]
# packages = [
# { include = "simbricks" }
# ]
[build-system]
requires
=
["poetry-core>=1.0.0"]
build-backend
=
"poetry.core.masonry.api"
...
...
@@ -53,4 +37,11 @@ packages = [
]
[tool.poetry.dependencies]
numpy
=
"^1.21.0"
\ No newline at end of file
numpy
=
"^1.21.0"
simbricks-cli
=
"*"
simbricks-client
=
"*"
simbricks-orchestration
=
"*"
simbricks-runner
=
"*"
simbricks-runtime
=
"*"
simbricks-local
=
"*"
simbricks-utils
=
"*"
\ No newline at end of file
symphony/requirements.txt
View file @
37904fce
...
...
@@ -29,4 +29,5 @@ black==24.10.0
-e ./orchestration
-e ./runner
-e ./runtime
-e ./local
-e ./utils
symphony/runner/pyproject.toml
View file @
37904fce
...
...
@@ -20,6 +20,9 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[tool.black]
line-length
=
120
[build-system]
requires
=
["poetry-core>=1.0.0"]
build-backend
=
"poetry.core.masonry.api"
...
...
@@ -31,4 +34,9 @@ description = "simbricks runner lib"
authors
=
[
"Jakob Görgen <jakob@simbricks.io>"
,
]
packages
=
[
{
include
=
"simbricks"
}
]
\ No newline at end of file
]
[tool.poetry.dependencies]
simbricks-orchestration
=
"*"
simbricks-runtime
=
"*"
simbricks-local
=
"*"
symphony/runtime/pyproject.toml
View file @
37904fce
...
...
@@ -20,18 +20,8 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# [build-system]
# requires = ["setuptools>=64.00", "wheel"]
# build-backend = "setuptools.build_meta"
#
# [project]
# name = "simbricks_runtime"
# version = "0.1.0"
# description = "simbricks runtime that can be used to execute an actual simulation"
# dependencies = [ ]
# packages = [
# { include = "simbricks" }
# ]
[tool.black]
line-length
=
120
[build-system]
requires
=
["poetry-core>=1.0.0"]
...
...
@@ -45,3 +35,7 @@ authors = [ "Jakob Görgen <jakob@simbricks.io>", ]
packages
=
[
{
include
=
"simbricks"
}
]
[tool.poetry.dependencies]
simbricks-orchestration
=
"*"
simbricks-utils
=
"*"
symphony/utils/pyproject.toml
View file @
37904fce
...
...
@@ -20,6 +20,9 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[tool.black]
line-length
=
120
[build-system]
requires
=
["poetry-core>=1.0.0"]
build-backend
=
"poetry.core.masonry.api"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment