-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1.08 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
[build-system]
build-backend = "maturin"
requires = ["maturin>=1.0,<2.0"]
[project]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Rust",
"Operating System :: OS Independent",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
]
description = "Generates requirements.txt for Python projects from imports in Python code. Inspired by pipreqs, leverages Rust for performance and reliability."
name = "preq"
readme = "README.md"
requires-python = ">=3.10"
version = "0.1.2"
[[project.authors]]
email = "antoniomtbraz@gmail.com"
name = "Antonio Braz"
[project.urls]
homepage = "https://pypi.org/project/preq/"
repository = "https://github.com/atbraz/preq"
issue-tracker = "https://github.com/atbraz/preq/issues"
[tool.maturin]
bindings = "bin"
kind = "bin"
name = "preq"
strip = true
version = "0.1.2"