-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
72 lines (67 loc) · 1.92 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python
import io
from setuptools import find_packages, setup # type: ignore
from curlylint import (
__author__,
__author_email__,
__copyright__,
__description__,
__license__,
__url__,
__version__,
)
with io.open("README.md", encoding="utf-8") as readme_file:
long_description = readme_file.read()
setup(
name="curlylint",
version=__version__,
description=__description__,
long_description=long_description,
long_description_content_type="text/markdown",
url=__url__,
author=__author__,
author_email=__author_email__,
license=__license__,
copyright=__copyright__,
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
package_data={"curlylint": ["py.typed"]},
keywords=[
"curlylint",
"linter",
"linting",
"jinja",
"jinja2",
"django templates",
"twig",
"nunjucks",
"liquid",
"templates",
"html",
],
python_requires=">=3.6",
install_requires=[
"parsy==1.1.0",
"attrs>=17.2.0",
"click>=6.5",
"toml>=0.9.4",
"pathspec>=0.6, <1",
"dataclasses>=0.6; python_version < '3.7'",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Quality Assurance",
"Typing :: Typed",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
entry_points={"console_scripts": ["curlylint=curlylint.cli:patched_main"]},
)