forked from sscpac/statick-md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (53 loc) · 1.59 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
"""Setup."""
from setuptools import setup
with open("README.md", encoding="utf8") as fid:
long_description = fid.read() # pylint: disable=invalid-name
TEST_DEPS = [
"mock",
"pytest",
]
EXTRAS = {
"test": TEST_DEPS,
}
setup(
author="NIWC Pacific",
name="statick-md",
description="Statick analysis plugins for Markdown files.",
version="0.1.2",
packages=[
"statick_tool",
"statick_tool.plugins.discovery",
"statick_tool.plugins.tool",
],
package_dir={
"statick_tool": ".",
"statick_tool.plugins.discovery": "src/statick_md/plugins/discovery",
"statick_tool.plugins.tool": "src/statick_md/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=[
"proselint",
"restructuredtext-lint",
"rstcheck",
"sphinx",
"statick",
],
tests_require=TEST_DEPS,
extras_require=EXTRAS,
url="https://github.com/sscpac/statick-md",
classifiers=[
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"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",
"Topic :: Software Development :: Testing",
],
)