-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
57 lines (54 loc) · 1.4 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
[tool.poetry]
name = "sqlalchemy-neo4j"
version = "0.2.dev"
description = "SQL Alchemy dialect for Neo4j"
authors = ["Beni Ben Zikry"]
readme="README.md"
homepage="https://github.com/bbenzikry/sqlalchemy-neo4j"
keywords=["neo4j", "sqlalchemy", "graph","database"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database :: Front-Ends",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
sqlalchemy = {version=">=1.0,<1.4"}
jpype1 = {version="1.3.0", optional=true}
jaydebeapi={version="1.2.3", optional=true}
python = ">=3.6.2,<4.0.0"
[tool.poetry.dev-dependencies]
ptpython = "^3.0.20"
black = {version = "^21.9b0", allow-prereleases = true}
pydocstyle = "^6.1.1"
pycodestyle = "^2.8.0"
pylint = "^2.11.1"
bandit = "^1.7.0"
[tool.black]
line-length = 88
target-version = ['py39']
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.envrc
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| MANIFEST.in
| LICENSE
| AUTHORS
| setup.cfg:
| project.toml
)/
'''