-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
56 lines (50 loc) · 1.63 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
"""Setup."""
from setuptools import setup
with open("README.md", encoding="utf-8") as fid:
long_description = fid.read() # pylint: disable=invalid-name
TEST_DEPS = [
"mock",
"pre-commit",
"pytest==7.1",
]
EXTRAS = {
"test": TEST_DEPS,
}
setup(
author="Thomas Denewiler",
name="statick-tex",
description="Statick analysis plugins for TeX/LaTeX files and projects.",
version="0.3.5",
packages=[
"statick_tool",
"statick_tool.plugins.discovery",
"statick_tool.plugins.tool",
],
package_dir={
"statick_tool": ".",
"statick_tool.plugins.discovery": "src/statick_tex/plugins/discovery",
"statick_tool.plugins.tool": "src/statick_tex/plugins/tool",
},
package_data={
"statick_tool": ["rsc/.*", "rsc/*"],
"statick_tool.plugins.discovery": ["*.yapsy-plugin"],
"statick_tool.plugins.tool": ["*.yapsy-plugin"],
},
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["statick"],
tests_require=TEST_DEPS,
extras_require=EXTRAS,
url="https://github.com/tdenewiler/statick-tex",
classifiers=[
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Text Processing :: Markup :: LaTeX",
"Typing :: Typed",
],
)