-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 956 Bytes
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 956 Bytes
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
45
46
47
[project]
name = "shaman"
authors = [
{name = "Alfredo Deza"},
{name = "Kyr Shatskyy", email = "kyrylo.shatskyy@clyso.com"},
]
version = "0.1"
description = ""
readme = "README.rst"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"pecan",
"sqlalchemy==1.4.53",
"psycopg2-binary==2.9.10",
"pecan-notario",
"requests",
"jinja2",
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Utilities',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
[project.entry-points."pecan.command"]
populate = "shaman.commands.populate:PopulateCommand"
[project.optional-dependencies]
test = [
"pytest",
"mock",
"webtest",
]
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=45",
"wheel",
]
[tool.setuptools.packages.find]