forked from nikulukani/pyorient_native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.26 KB
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
[build-system]
requires = ["setuptools>=74.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyorient_native"
version = "1.3.1"
description = "OrientDB Binary Serialization package for python"
authors = [{ name = "Nikul Ukani", email = "nhu2001@columbia.edu" }]
[project.urls]
Homepage = "https://github.com/nikulukani/pyorient_native"
Download = "https://github.com/fruitflybrain/pyorient_native/archive/1.3.1.tar.gz"
[tool.setuptools.packages.find]
where = ["."]
include = ["pyorient_native*"]
# Use an array of tables (multi-line friendly) instead of an inline table.
[[tool.setuptools.ext-modules]]
name = "pyorient_native"
sources = [
"pyorient_native/orientc_reader.cpp",
"pyorient_native/orientc_writer.cpp",
"pyorient_native/helpers.cpp",
"pyorient_native/parse_exception.cpp",
"pyorient_native/listener.cpp",
"pyorient_native/encoder.cpp",
"pyorient_native/pyorient_native.cpp"
]
depends = [
"pyorient_native/orientc_reader.h",
"pyorient_native/orientc_writer.h",
"pyorient_native/orientc.h",
"pyorient_native/helpers.h",
"pyorient_native/parse_exception.h",
"pyorient_native/listener.h",
"pyorient_native/encoder.h",
"pyorient_native/pendian.h"
]
include-dirs = ["./pyorient_native"]
language = "c++"
libraries = ["stdc++"]