-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.16 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
[build-system]
requires = [ "setuptools>=61.0.0", "wheel" ]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"glutamate" = "glutamate"}
[tool.setuptools.package-data]
glutamate = ['py.typed']
[project]
name = "glutamate"
version = "0.0.1a7"
description = "Python library for querying and downloading posts from e621"
readme = "README.md"
authors = [{ name = "jorektheglitch", email = "jorektheglitch@yandex.ru" }]
license = { file = "LICENSE" }
classifiers = [
# "License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Typing :: Typed",
]
keywords = ["e621", "glutamate"]
dependencies = [
"adaptix >= 3.0.0a3",
"aiofiles >= 23.1",
"aiohttp >= 3.8",
"aiohttp-socks >= 0.8",
"polars >= 0.17",
"tqdm >= 4.65",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [ "mypy" ]
[project.urls]
Homepage = "https://github.com/jorektheglitch/glutamate/"
[project.scripts]
realpython = "glutamate.__main__:main"