-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·50 lines (42 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·50 lines (42 loc) · 1.42 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
[project]
name = "pris"
version = "0.5"
description = "PRIS - pattern recognition integer sequence. Detect patterns or sequences in data streams."
readme = "readme.md"
requires-python = ">=3.8"
license = "MIT"
keywords = []
authors = [
{ name="Strangemother", email="pris@strangemother.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = []
[project.urls]
Documentation = "https://github.com/Strangemother/python-pris#readme"
Homepage = "https://github.com/Strangemother/python-pris"
Repository = "https://github.com/Strangemother/python-pris"
Issues = "https://github.com/Strangemother/python-pris/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pris/"]
# [tool.hatch.build]
# include = [
# "*.pyd",
# "pris/*.pyd",
# "src/pris/*.pyd"
# ]
# artifacts = ["*.so", "*.dll", "*.dylib", "src/pris/*.pyd"]
# [tool.hatch.build.targets.wheel.force-include]
# "src/pris/crc.pyd" = "pris/crc.pyd"