-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.1 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
[project]
name = "neoads"
version = "0.0.8"
description = "Abstract Data Structures (Set, Map, Doubly Linked List) over the neo4j graph database."
readme = "./README.rst"
authors = [{name="Athanasios Anastasiou", email="[email protected]"}]
keywords=["graph", "neo4j", "ORM", "OGM", "ADS", "Data Structures", "Data Modelling"]
classifiers= [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Topic :: Database"
]
requires-python = ">=3.11"
dependencies = [
"neomodel"
]
[project.optional-dependencies]
test = [
"pytest",
"pandas"
]
# license
[project.urls]
#Homepage = ""
documentation = "https://neoads.readthedocs.io/en/latest/"
repository = "https://github.com/aanastasiou/neoads/"
changelog = "https://github.com/aanastasiou/neoads/blob/main/Changelog"
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools',
]
[tool.setuptools]
packages = ["neoads"]