forked from neo4j-contrib/neomodel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (68 loc) · 2.14 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
[project]
name = "neomodel"
authors = [
{name = "Robin Edwards", email = "[email protected]"},
]
maintainers = [
{name = "Marius Conjeaud", email = "[email protected]"},
{name = "Athanasios Anastasiou", email = "[email protected]"},
{name = "Cristina Escalante"},
]
description = "An object mapper for the neo4j graph database."
readme = "README.md"
keywords = ["graph", "neo4j", "ORM", "OGM", "mapper"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
"Programming Language :: Python :: 3",
"Topic :: Database",
]
dependencies = [
"neo4j~=5.15.0",
]
requires-python = ">=3.7"
dynamic = ["version"]
[project.urls]
documentation = "https://neomodel.readthedocs.io/en/latest/"
repository = "http://github.com/neo4j-contrib/neomodel"
changelog = "https://github.com/neo4j-contrib/neomodel/releases"
[project.optional-dependencies]
dev = [
"pytest>=7.1",
"pytest-cov>=4.0",
"pre-commit",
"black",
"isort",
"Shapely>=2.0.0"
]
pandas = ["pandas"]
numpy = ["numpy"]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "neomodel._version.__version__"}
[tool.setuptools.packages.find]
where = ["./"]
[tool.pytest.ini_options]
addopts = "--resetdb"
testpaths = "test"
[tool.isort]
profile = 'black'
src_paths = ['neomodel']
[tool.pylint.'MESSAGES CONTROL']
disable = 'missing-module-docstring,redefined-builtin,missing-class-docstring,missing-function-docstring,consider-using-f-string,line-too-long'
[tool.pylint.'BASIC']
good-names = 'i,j,k,ex,_,e,fn,x,y,z,id,db,q'
[tool.pylint.'DESIGN']
max-attributes = 10
max-args = 8
[project.scripts]
neomodel_install_labels = "neomodel.scripts.neomodel_install_labels:main"
neomodel_remove_labels = "neomodel.scripts.neomodel_remove_labels:main"
neomodel_inspect_database = "neomodel.scripts.neomodel_inspect_database:main"