forked from HunterMcGushion/docstr_coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (43 loc) · 1.61 KB
/
setup.py
File metadata and controls
48 lines (43 loc) · 1.61 KB
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
from setuptools import setup, find_packages
def readme():
with open("README.md") as f:
return f.read()
MAJOR, MINOR, MICRO = 1, 0, 3
__VERSION__ = "{}.{}.{}".format(MAJOR, MINOR, MICRO)
setup(
name="docstr_coverage",
version=__VERSION__,
description=" ".join(
[
"Utility for examining python source files to ensure proper documentation.",
"Lists missing docstrings, and calculates overall docstring coverage percentage rating",
]
),
long_description=readme(),
long_description_content_type="text/markdown",
keywords="docstring coverage documentation audit source code statistics report",
url="https://github.com/HunterMcGushion/docstr_coverage",
author="Hunter McGushion",
author_email="hunter@mcgushion.com",
license="MIT",
packages=['docstr_coverage'],
install_requires=[],
include_package_data=True,
zip_safe=False,
test_suite="nose.collector",
tests_require=["nose"],
entry_points=dict(console_scripts=["docstr-coverage=docstr_coverage.coverage:_execute"]),
classifiers=(
# TODO: Check Python 2 compatibility
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
),
)