-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
40 lines (37 loc) · 1.47 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
[tool.poetry]
authors = ["Jan Gosmann <[email protected]>", "Federico Jaramillo <[email protected]>"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'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 :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development',
]
description = "pylint-venv provides a Pylint init-hook to use the same Pylint installation with different virtual environments."
homepage = "https://github.com/jgosmann/pylint-venv/"
include = ["pylint_venv.py", {path = "CHANGES.md", format = "sdist"}]
keywords = ["pylint", "virtualenv", "venv"]
license = "MIT"
maintainers = ["Jan Gosmann <[email protected]>"]
name = "pylint-venv"
readme = "README.rst"
repository = "https://github.com/jgosmann/pylint-venv/"
version = "3.0.4"
[tool.poetry.dependencies]
python = "^3.7.2"
[tool.poetry.dev-dependencies]
pylint = '>=2.14.0'
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]