-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
31 lines (29 loc) · 1.05 KB
/
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
from setuptools import setup
LONG_DESCRIPTION = open("README.rst").read()
with open("./requirements.txt", "r") as f:
install_requires = f.read().splitlines()
setup(
name="pylint-pydantic",
version="0.3.5",
description="A Pylint plugin to help Pylint understand the Pydantic",
long_description=LONG_DESCRIPTION,
author="fcfangcc",
author_email="[email protected]",
url="https://github.com/fcfangcc/pylint-pydantic",
packages=["pylint_pydantic"],
license="GPLv3",
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"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",
"Programming Language :: Python :: 3.13",
],
keywords=["pylint", "pydantic"],
python_requires=">=3.8",
install_requires=install_requires,
)