-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 979 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 979 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>=65",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "py_eureka_client"
description = "A eureka client written in python. Support registering your python component to Eureka Server, as well as calling remote services by pulling the the Eureka registry. "
readme = "README.md"
authors = [
{ name = "keijack", email = "keijack.wu@gmail.com" }
]
requires-python = ">=3.7"
keywords = ["eureka", "netflix", "microservice"]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dynamic = ["version"]
dependencies = [
"ifaddr>=0.2.0",
"dnspython>=2.4.2",
"httpx>=0.23.0"
]
[tool.setuptools]
packages = ["py_eureka_client"]
[tool.setuptools.dynamic]
version = {attr = "py_eureka_client.version"}
[project.urls]
homepage = "https://github.com/keijack/python-eureka-client"
repository = "https://github.com/keijack/python-eureka-client"