-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 851 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import find_packages, setup
setup(
name="LaTeX oriented pre-commit hooks",
description="Contains hook(s) for pre-commit, see http://pre-commit.com",
author="Jonas Bushart <jonas@bushart.org>",
version="1.4.0",
classifiers=[
"License :: OSI Approved :: Apache 2 License",
"License :: OSI Approved :: MIT License",
"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",
],
packages=find_packages(),
entry_points={
"console_scripts": [
"consistent_spelling = latexhooks.consistent_spelling:main",
"unique_labels = latexhooks.unique_labels:main",
]
},
)