-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (66 loc) · 1.6 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# pyproject.toml
[tool.pytest.ini_options]
testpaths = [
"tests",
# "pysui_flask/test/route"
]
pythonpath = ["pysui_flask"]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pysui-flask"
description = "pysui-flask pysui flask REST api"
requires-python = ">=3.10"
keywords = [
"software development kit",
"sui",
"blockchain",
"utilities",
"pysui",
"flask",
"rest",
"framework",
]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"pysui>=0.34.0",
"Flask>=2.3.2",
"flasgger>=0.9.7.2.dev2",
"flask-marshmallow>=0.15.0",
"apispec>=6.3.0",
"python-dotenv>=1.0.0",
"dataclasses-json",
]
dynamic = ["version", "readme"]
[project.scripts]
[tool.setuptools.packages.find]
exclude = [
"out*",
"temp*",
"test*",
"tools*",
"build*",
"doc*",
"env*",
"images*",
]
[tool.setuptools.dynamic]
version = { attr = "pysui_flask.version.__version__" }
readme = { file = ["README.rst"], content-type = "text/x-rst" }
[project.urls]
# changelog = ""
repository = "https://github.com/FrankC01/pysui-flask"
# issues = ""