-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 925 Bytes
/
pyproject.toml
File metadata and controls
37 lines (30 loc) · 925 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "py_unidbg_server"
version = "0.1.0"
description = "A JVM microservice based on Python, no need to dive into Java Springboot, infinite scalability"
authors = [{name = "aFunnyStrange"}]
license = {text = "BSD-3-Clause"}
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"jpype1",
"fastapi",
"gunicorn",
"uvicorn"
]
[project.urls]
Homepage = "https://github.com/aFunnyStrange/py_unidbg_server"
[tool.setuptools.packages.find]
include = ["py_unidbg_server", "py_unidbg_server.*"]
exclude = ["docs*", "tests*", "examples*"]
[project.scripts]
unidbg-server = "py_unidbg_server.commands.main:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"py_unidbg_server" = ["templates/*"]
[tool.setuptools.exclude-package-data]
"*" = ["__pycache__/*", "*.py[cod]"]