-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nina Bernick
committed
Aug 23, 2024
1 parent
48fb829
commit ae44046
Showing
2 changed files
with
22 additions
and
7 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 |
---|---|---|
|
@@ -2,11 +2,14 @@ | |
name = "platformics" | ||
# placeholder version that will be replace by poetry-dynamic-versioning | ||
version = "0.1.1" | ||
description = "Platformics bio entities framework" | ||
authors = ["CZI Infectious Disease Team <[email protected]>"] | ||
description = "Codegen Python GraphQL Entity Framework" | ||
authors = ["CZI Team <[email protected]>"] | ||
license = "MIT License" | ||
readme = "README.md" | ||
packages = [{include = "platformics"}] | ||
# requires-python = ">=3.12" | ||
repository = "https://github.com/chanzuckerberg/platformics" | ||
# todo add classifiers | ||
|
||
[tool.poetry.scripts] | ||
platformics = 'platformics.cli.main:cli' | ||
|
@@ -30,8 +33,7 @@ httpx = "^0.24.1" | |
[tool.poetry.dependencies] | ||
python = "^3.12" | ||
fastapi = "^0.110.0" | ||
# biopython 1.83 fails installation on m1 macs. The issue is fixed upstream so we're pinning to a specific commit until the next release. | ||
biopython = { git = "https://github.com/biopython/biopython.git", rev = "e0731edc892b653dee10b1f68acf795086e6f3f0" } | ||
biopython = "^1.84" | ||
asyncpg = "^0.28.0" | ||
alembic = "^1.11.1" | ||
sgqlc = "^16.3" | ||
|