Created
November 19, 2019 20:03
-
-
Save playpauseandstop/4efcf7d77db1df616dcea3e065e51935 to your computer and use it in GitHub Desktop.
pyproject.toml for https://github.com/sdispater/poetry/issues/1323
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
[tool.black] | |
exclude = "^.*/migrations/.*$" | |
line_length = 79 | |
target_version = ["py37"] | |
[tool.poetry] | |
name = "project" | |
version = "1.0.0" | |
description = "Project" | |
authors = ["Team <[email protected]>"] | |
maintainers = ["Igor Davydenko <[email protected]>"] | |
packages = [ | |
{ include = "package_1" }, | |
{ include = "package_2" } | |
] | |
readme = "README.md" | |
repository = "https://gitlab.com/team/project" | |
[tool.poetry.dependencies] | |
python = "^3.7" | |
ahu-data-structure = {git = "ssh://[email protected]/team/project-data-structure.git", rev = "fb895c5ef0c3f68153701603166120969123ee22"} | |
mcs-core = {git = "ssh://[email protected]/team/project-core.git", rev = "fa63bb7ba53e775d5a7ca7de999abefc2c4f2da5"} | |
aiohttp = "^3.6" | |
aiohttp-middlewares = "^0.3" | |
alembic = "^1.1" | |
asyncpg = "^0.19" | |
attrs = "^19.1" | |
bcrypt = "^3.1" | |
ciso8601 = "^2.1" | |
envparse = "^0.2.0" | |
psycopg2-binary = "^2.8" | |
pytz = "^2019.2" | |
sendgrid = "^6.0" | |
sentry-sdk = "^0.13.1" | |
sqlalchemy = "^1.3" | |
sqlalchemy-citext = "^1.3" | |
uvloop = "^0.14" | |
[tool.poetry.dev-dependencies] | |
ipython = "^7.8" | |
openapi-spec-validator = "^0.2.8" | |
pydevd = "^1.7" | |
pytest = "^5.1" | |
pytest-aiohttp = "^0.3.0" | |
pytest-cov = "^2.7" | |
pytest-env = "^0.6.2" | |
[build-system] | |
requires = ["poetry>=0.12"] | |
build-backend = "poetry.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment