-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 813 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 813 Bytes
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
[project]
name = "askfm-api"
version = {use_scm = true}
description = "Unofficial API wrapper for https://ask.fm"
license = {text = "MIT"}
readme = "README.md"
urls.homepage = "https://github.com/AskfmForHumans/askfm-api"
authors = [
{name = "snowwm", email = "snowwontmelt@gmail.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
dependencies = [
"requests~=2.25",
]
requires-python = ">=3.9"
dynamic = ["classifiers", "version"]
[tool.pdm.dev-dependencies]
dev = [
"black~=20.8b1",
"isort~=5.7",
"mypy~=0.812",
"twine~=3.3",
]
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[tool.isort]
profile = "black"
force_sort_within_sections = true
skip_gitignore = true