-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.62 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["javaobj"]
[project]
name = "javaobj-py3"
version = "0.4.4"
description = "Module for serializing and de-serializing Java objects."
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Volodymyr Buell", email = "[email protected]" }
]
maintainers = [
{ name = "Thomas Calmant", email = "[email protected]" }
]
keywords = ["python", "java", "marshalling", "serialization"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"enum34; python_version<='3.4'",
"typing; python_version<='3.4'"
]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
Homepage = "https://github.com/tcalmant/python-javaobj"
Issues = "http://github.com/tcalmant/python-javaobj/issues"
Source = "http://github.com/tcalmant/python-javaobj/"
[tool.hatch.envs.test]
dependencies = ["pytest"]
[tool.hatch.envs.test.scripts]
run = "pytest tests"
[tool.black]
line-length = 79