-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (42 loc) · 1023 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
41
42
43
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hubspace-async"
version = "0.4.1"
dependencies = [
"aiohttp",
"beautifulsoup4",
]
requires-python = ">=3.10"
authors = [
{name = "Chris Dohmen", email = "[email protected]"}
]
maintainers = [
{name = "Chris Dohmen", email = "[email protected]"}
]
description = "Talk to the HubSpace API asynchronously"
readme = "README.rst"
license = {file = "LICENSE.txt"}
keywords = ["HubSpace"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-mock",
"pytest-cov",
"pytest-aioresponses",
"anyio",
]
cli = [
"click",
]
[project.urls]
Repository = "https://github.com/Expl0dingBanana/hubspace-async"
Changelog = "https://github.com/Expl0dingBanana/hubspace-async/CHANGELOG.md"