-
Notifications
You must be signed in to change notification settings - Fork 55
/
pyproject.toml
47 lines (41 loc) · 1.22 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["./"]
[project]
name = "django_neomodel"
authors = [{name = "Robin Edwards", email = "[email protected]"}]
maintainers = [{name = "Marius Conjeaud", email = "[email protected]"}]
description = "Use Neo4j with Django!"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["graph", "neo4j", "django", "plugin", "neomodel"]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
'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 = [
"neomodel~=5.3.0",
'django>=4.2.8'
]
version='0.2.0'
[project.urls]
repository = "http://github.com/robinedwards/django-neomodel"
[project.optional-dependencies]
dev = [
"pytest>=7.1",
"pytest-django>=4.5.2",
"pytest-cov>=4.0",
]
[tool.pytest.ini_options]
addopts = "--ds=tests.settings"
testpaths = "tests"