-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
pyproject.toml
44 lines (38 loc) · 1.42 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
[build-system]
requires = ["setuptools>=69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pigar"
description = "A tool to generate requirements.txt for Python project."
readme = "README.md"
keywords = ["requirements.txt", "automation", "tool", "module-search"]
license = { text = "BSD 3-Clause License" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3 :: Only",
"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",
]
requires-python = ">=3.8"
dependencies = ["click>=8.1", "nbformat>=5.7", "aiohttp>=3.9", "colorama"]
dynamic = ["version"]
[project.scripts]
pigar = "pigar.__main__:main"
[project.urls]
Documentation = "https://github.com/damnever/pigar"
Source = "https://github.com/damnever/pigar"
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE", "pigar/_vendor/pip/LICENSE.txt"]
[tool.setuptools.packages.find]
exclude = ["*.tests", "*.tests.*", "tests.*", "tests"]
[tool.setuptools.dynamic]
version = { attr = "pigar.version.__version__" }