forked from ahmetveburak/django-bulk-copy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (64 loc) · 1.98 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[tool.poetry]
name = "django-bulk-copy"
version = "0.1.3"
authors = ["Ahmet Burak Ozyurt <[email protected]>"]
maintainers = [
"Ahmet Burak Ozyurt <[email protected]>",
"Onuralp SEZER <[email protected]>",
]
packages = [{include = "bulk_copy"}]
description = "Faster way to create your models in Django"
keywords = ["django","postgres","django-bulk-copy","bulk","t-sql"]
exclude = ["tests/"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ahmetveburak/django-bulk-copy/issues"
homepage = "https://github.com/ahmetveburak/django-bulk-copy"
repository = "https://github.com/ahmetveburak/django-bulk-copy"
documentation = "https://github.com/ahmetveburak/django-bulk-copy/blob/main/README.md"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
django = "^4.1.7"
psycopg2 = "^2.9.5"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
mypy = "^0.991"
bandit = "^1.7.4"
debugpy = "^1.6.4"
rope = "^1.6.0"
wheel = "^0.38.4"
setuptools = "^65.6.3"
coverage = "^7.0.1"
pre-commit = "^2.21.0"
pyupgrade = "^3.3.1"
ruff = "^0.0.205"
[tool.isort]
line_length = 79
profile = "black"
skip = [".gitignore", ".dockerignore","bulk_copy/__init__.py"]
[tool.bandit]
target = ["tests", "bulk_copy"]
tests = ["B201", "B301"]
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.2.1"
tox = "^4.3.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"