-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
32 lines (27 loc) · 934 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
[project]
name = "python-seamless"
authors = [{ name = "Xpo Development", email = "[email protected]" }]
description = "A Python package for creating and manipulating HTML components. It is working similar to React.js, but in Python"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "version"]
[project.urls]
Homepage = "https://github.com/xpodev/seamless"
Issues = "https://github.com/xpodev/seamless/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["seamless*"]
exclude = ["tests*"]
[tool.setuptools.package-data]
seamless = ["**/*.js"]
[tool.setuptools.dynamic]
version = { attr = "seamless.version.version" }
dependencies = { file = ["requirements.txt"] }