-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
40 lines (35 loc) · 939 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bloxone"
dynamic = ["version"]
description = "BloxOne API Wrapper Module"
readme = "README.rst"
license = "BSD-2-Clause"
requires-python = ">=3.8"
authors = [
{ name = "Chris Marrison", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"pyyaml",
"requests",
]
[project.urls]
Documentation = "https://python-bloxone.readthedocs.io/en/latest/"
Homepage = "https://github.com/ccmarris/python-bloxone"
Source = "https://github.com/ccmarris/python-bloxone"
Tracker = "https://github.com/ccmarris/python-bloxone/issues"
[tool.hatch.version]
path = "bloxone/__init__.py"
[tool.setuptools.packages.find]
where = ["bloxone/"]
[tool.hatch.build.targets.sdist]
include = [
"/bloxone",
]