-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.2 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyimgur"
dynamic = ["version"]
description = "The easy way of using Imgur"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{name = "Andreas Damgaard Pedersen", email = "[email protected]"}
]
keywords = ["imgur", "api", "wrapper", "PyImgur"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Utilities"
]
dependencies = [
"requests",
]
[project.urls]
Homepage = "https://github.com/Damgaard/PyImgur"
Documentation = "https://pyimgur.readthedocs.org"
[tool.hatch.version]
path = "pyimgur/__init__.py"
pattern = '__version__ = "(?P<version>[^"]+)"'
[tool.hatch.build.targets.sdist]
include = [
"/pyimgur",
"COPYING",
"README.rmd",
]
[tool.pytest.ini_options]
testpaths = ["pyimgur/test"]
python_files = ["*_test.py"]
[tool.black]
target-version = ["py39"]
[tool.isort]
profile = "black"
multi_line_output = 3