-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 981 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
"surrealdb_migrations.data" = ["**/*"]
[tool.setuptools.packages.find]
where = ["lib"]
[project]
name = "surrealdb_migrations"
version = "0.1.0"
authors = [{name = "Hewlett Packard Enterprise Development LP", email = "[email protected]"}]
description = "SurrealDB migrations tool"
readme = "README.rst"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"setproctitle",
"colorlog",
"tomli",
"surrealdb",
"objns",
]
[project.scripts]
surrealdb_migrations = "surrealdb_migrations.__main__:main"