-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 1.27 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "onerecord"
version = "0.2.0"
authors = [
{ name = "Daniel A. Doeppner", email = "[email protected]" }
]
description = "ONE Record with Python"
readme = "README.md"
requires-python = ">=3.9"
license = 'MIT'
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: Other Audience',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
]
dependencies = ['pydantic>=1.10.2', 'requests>=2.28.1']
[project.urls]
"Homepage" = "https://github.com/ddoeppner/one-record-python"
"Bug Tracker" = "https://github.com/ddoeppner/one-record-python/issues"
[tool.hatch.version]
path = "onerecord/__init__.py"