-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
52 lines (48 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
45
46
47
48
49
50
51
52
[tool.poetry]
name = "requirements-detector"
version = "1.3.2"
authors = ["Landscape.io <[email protected]>"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Topic :: Software Development :: Quality Assurance',
'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',
'License :: OSI Approved :: MIT License',
]
license = "MIT"
keywords = ["python","requirements detector"]
description = "Python tool to find and list requirements of a Python project"
readme = "README.md"
homepage = "https://github.com/landscapeio/requirements-detector"
packages = [
{ include = "requirements_detector/"}
]
include = [
"c2cgeoform/py.typed",
]
[tool.poetry.scripts]
detect-requirements = 'requirements_detector.run:run'
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
astroid = "^3.0"
packaging = ">=21.3"
toml = {version = "^0.10.2", python = "<3.11"}
semver = "^3.0.0"
[tool.poetry.dev-dependencies]
tox = "^3.24.5"
pre-commit = "^2.17.0"
pytest = "^6.2.4"
coverage = "^5.5"
twine = "^3.8.0"
pytest-benchmark = "^3.4.1"
pytest-cov = "^2.12.1"
types-toml = "^0.10.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"