-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (56 loc) · 1.61 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"
[project]
name = "ohmyfpg"
version = "0.4.0-dev.4"
description = "Oh My Fast Postgres!"
requires-python = ">=3.8"
authors = [{ name = "Lou Marvin Caraig", email = "[email protected]" }]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
repository = "https://github.com/se7entyse7en/ohmyfpg"
# `project` and `tool.poetry` table are duplicated. See:
# - https://github.com/PyO3/maturin/issues/632
# - https://github.com/python-poetry/poetry/issues/3332
[tool.poetry]
name = "ohmyfpg"
version = "0.4.0-dev.4"
description = "Oh My Fast Postgres!"
authors = ["Lou Marvin Caraig <[email protected]>"]
repository = "https://github.com/se7entyse7en/ohmyfpg"
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.23.2"
[tool.poetry.dev-dependencies]
maturin = "^0.13.2"
isort = "^5.10.1"
flake8 = "^4.0.1"
black = "^22.6.0"
flake8-docstrings = "^1.6.0"
flake8-bugbear = "^22.6.22"
flake8-commas = "^2.1.0"
flake8-isort = "^4.1.1"
flake8-builtins = "^1.5.3"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
ipython = "^8.4.0"
pandas = "^1.4.4"
matplotlib = "^3.5.3"
psycopg = {extras = ["binary"], version = "^3.1.2"}
asyncpg = "^0.26.0"
[tool.isort]
force_single_line = true
order_by_type = true
lines_after_imports = 2
indent = " "
atomic = true
sections = "STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
default_section = "THIRDPARTY"
known_first_party = "ohmyfpg"