-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
50 lines (42 loc) · 1.37 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
[build-system]
requires = ["setuptools>=61.2.0", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "fastapi-featureflags"
authors = [ "Tomas Pytel <[email protected]>", "Martin Hablak <[email protected]>"]
description = "Feature Flags for FastAPI"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
urls = {Homepage = "https://github.com/Pytlicek/fastapi-featureflags"}
version= "0.1.0"
[project]
name = "fastapi-featureflags"
authors = [{name = "Tomas Pytel", email = "[email protected]"}, {name = "Martin Hablak", email = "[email protected]"}]
description = "Feature Flags for FastAPI"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
urls = {Homepage = "https://github.com/Pytlicek/ fastapi-featureflags"}
requires-python = ">=3.7"
dependencies = []
dynamic = ["version"]
[tool.poetry.dependencies]
python = ">=3.8, <=3.12"
requests = "^2.29.0"
fastapi = "^0.103.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
pytest-cov = "^4.0.0"
httpx = "0.23.0"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools_scm]