-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (45 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
47 lines (45 loc) · 1.17 KB
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
[project]
name = "StackademyAI"
version = "0.1.6"
requires-python = ">=3.10"
description = "StackademyAI: an AI-powered marketing agent"
authors = [{ name = "Lawrence McDaniel", email = "lpm0073@gmail.com" }]
license = { file = "LICENSE" }
keywords = ["AI", "API", "Python"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU AGPL v3 or later (AGPLv3+)",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Framework :: Django",
"Framework :: Django REST framework",
"Topic :: Software Development :: Libraries :: Application Interfaces",
"Topic :: Software Development :: Libraries :: API",
"Natural Language :: English",
"Development Status :: 4 - Beta"
]
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| node_modules
| build
| buck-out
| build
| dist
| lambda_dist_pkg
)/
'''