-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (31 loc) · 958 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
[project]
name = "albaretto"
version = "0.0.1"
description = "A DALL·E 2 image generation downloader. Permits easy upload to cloud services like Google Drive."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["dalle", "dalle2", "openai", "download", "drive", "save"]
authors = [
{name = "Andrew Parsons", email = "[email protected]"},
]
maintainers = [
{name = "Andrew Parsons", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Natural Language :: English",
"Topic :: Artistic Software",
"Topic :: Games/Entertainment",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Archiving",
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic.dependencies]
file = "requirements.txt"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]