-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.66 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
48
49
50
51
52
53
[project]
name = "charlesperrycom"
version = "2.0.0"
description = "Charles O. Perry Artist Portfolio Website - Django-based portfolio showcasing sculpture, jewelry, puzzles, and furniture designs"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"django>=5.0,<6.0",
]
authors = [
{name = "Charles O. Perry", email = "paul@charlesperry.com"},
]
keywords = ["django", "portfolio", "art", "sculpture", "gallery"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 5.0",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Multimedia :: Graphics :: Presentation",
]
[project.urls]
Homepage = "https://charlesperry.com"
Repository = "https://github.com/your-username/charlesperrycom"
Issues = "https://github.com/your-username/charlesperrycom/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["bio", "chairs", "jewelry", "puzzles", "sculpture"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-django>=4.0",
"black>=23.0",
"flake8>=6.0",
"isort>=5.0",
]