-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
34 lines (32 loc) · 1.04 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
[build-system]
requires = [
"setuptools>=61",
"setuptools-scm>=8.0",
"wheel",
"pybind11>=2.6.0",
]
# Removing CMake as a build-system dependency
# This was causing arm/v7 builds to take 4+ hours and often fail.
# CMake is not available as a pre-built wheel for the arm/v7 architecture,
# so it would build CMake from source (hence the hours-long build).
# The failures happened during CMake's testing that happened as part of the build, one test would fail.
# This could be put back in if arm/v7 support is dropped, or a way is found to satisfy this
# requirement based on system-installed (i.e. non-pip) CMake.
# "cmake>=3.12",
build-backend = "setuptools.build_meta"
[project]
name = "dripline"
dynamic = ["version"]
dependencies = [
'PyYAML',
'aiohttp',
'uuid',
'asteval',
'setuptools_scm',
#these two for postgreSQL, move to plugin?
'sqlalchemy',
'psycopg2',
'colorlog', #we could make this optional if we wnat to minimize dependencies
]
[tool.setuptools_scm]
version_file = "dripline/version.py"