-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (29 loc) · 993 Bytes
/
setup.py
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
"""Install the package."""
from setuptools import setup # type: ignore
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='pylint_absolute_imports',
version='1.1.0',
packages=['pylint_absolute_imports'],
url='https://github.com/quentinn42/pylint_absolute_imports',
license='MIT License',
author='Quentin Lieumont',
author_email='[email protected]',
description=(
'Pylint plugin which adds linter error for relatives imports.'
'Read more about imports at https://peps.python.org/pep-0008/#imports'
),
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=(
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
),
install_requires=(
'pylint>=2.5.0,<4',
)
)