-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.43 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools >= 72.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "merak"
version = "0.3.5"
authors = [
{name = "(David) Siu-Kei Muk", email = "david.muk@proton.me"},
]
license = {file = "LICENSE"}
description = "Python binary package builder (via Cython)"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">= 3.8"
keywords = ["merak", "cython", "binary", "package", "build"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Cython",
"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",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Compilers"
]
dynamic = ["dependencies"]
[project.scripts]
merak = "merak.main:main"
[project.urls]
Repository = "https://github.com/dave-msk/merak"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
merak = ["data/*"]
[tool.setuptools.packages.find]
include = ["merak", "merak.*"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}