forked from orientechnologies/pyorient
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (37 loc) · 1.29 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
[build-system]
requires = [
"poetry-core>=1.0.0",
"setuptools>=51.0.0", # Needed for `pip install`
"wheel",
]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pyorientdb"
version = "1.0.0"
description = "OrientDB native client library"
authors = ["Bruce Schultz <[email protected]>"]
maintainers = ["Bruce Schultz <[email protected]>"]
license = "Apache License 2.0"
homepage = "https://github.com/brucetony/pyorientdb"
#documentation = "https://pyorient.readthedocs.io/en/latest/"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
]
packages = [
{ include = "pyorientdb", from="." },
]
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/brucetony/pyorientdb/issues"
#"Documentation" = "https://pyorient.readthedocs.io/en/latest/"
"Source Code" = "https://github.com/brucetony/pyorientdb"