-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 1.11 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
[project]
name = "dataclass_to_json"
version = "1.1.0"
authors = [
{ name="Adnane Guettaf", email="adnane.guettaf@gmail.com" },
]
license = { file = "LICENCE"}
description = "Convert a dataclass structure to a JSON object"
dynamic = ["dependencies"]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
maintainers = [
{name = "Adnane Guettaf", email = "adnane.guettaf@gmail.com" },
]
[build-system]
requires = ["setuptools>=60.10.0", "wheel"]
build-backend = "setuptools.build_meta"
[tools.setuptools]
packages = ["src"]
[project.urls]
Homepage = "https://github.com/DninoAdnane/dataclass_to_json"
Issues = "https://github.com/DninoAdnane/dataclass_to_json/issues"