Skip to content

Instantly share code, notes, and snippets.

@swist
Created December 17, 2019 16:11
Show Gist options
  • Save swist/89660bf70dbed6d0622bba7db381ae9c to your computer and use it in GitHub Desktop.
Save swist/89660bf70dbed6d0622bba7db381ae9c to your computer and use it in GitHub Desktop.
[tool.black]
line-length = 95
target-version = ['py37']
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry]
name = "config"
version = "0.1.0"
description = ""
authors = ["swist <me@swistofon.pl>"]
[tool.poetry.dependencies]
python = "^3.7"
omegaconf = "^1.4"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 95
target-version = ['py37']
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
)/
'''
[tool.poetry]
name = "kafkaesque"
version = "0.1.0"
description = "Kafkaesque log based storage"
authors = ["swist <me@swistofon.pl>"]
[tool.poetry.dependencies]
python = "^3.7"
aiokafka = "^0.5.2"
boto3 = "^1.10.40"
inflection = "^0.3.1"
aiostream = "^0.4.0"
pyyaml = "^5.2"
psycopg2-binary = "^2.8.4"
django = "^2.2"
config = {path = "../config", develop = false }
[tool.poetry.dev-dependencies]
hypothesis = "^4.55.1"
pytest = "^5.3.2"
asynctest = "^0.13.0"
pytest-asyncio = "^0.10.0"
pytest-django = "^3.7.0"
testfixtures = "^6.10.3"
mock = "^3.0.5"
codecov = "^2.0.15"
pytest-cov = "^2.8.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 95
target-version = ['py37']
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''
[tool.poetry]
name = "marmot-api"
version = "0.1.0"
description = ""
authors = []
[tool.poetry.dependencies]
config = { path = "./config", develop = false }
kafkaesque = {path = "./kafkaesque", develop = false}
python-snappy = "^0.5.4"
[tool.poetry.dev-dependencies]
rope = "^0.14.0"
pydevd-pycharm = "=192.6262.63"
django-silk = "^3.0"
[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