1"""packaging information"""
2# Things that change more often go here.
3copyright = """
4Copyright (C) 2008-2010, 2013, 2015, 2020 Rocky Bernstein <rocky@gnu.org>.
5"""
6classifiers = [
7    "Development Status :: 5 - Production/Stable",
8    "Intended Audience :: Developers",
9    "License :: OSI Approved :: MIT License",
10    "Programming Language :: Python",
11    "Topic :: Software Development :: Libraries :: Python Modules",
12    "Programming Language :: Python :: 2.4",
13    "Programming Language :: Python :: 2.5",
14    "Programming Language :: Python :: 2.6",
15    "Programming Language :: Python :: 2.7",
16    "Programming Language :: Python :: 3.1",
17    "Programming Language :: Python :: 3.2",
18    "Programming Language :: Python :: 3.3",
19    "Programming Language :: Python :: 3.4",
20    "Programming Language :: Python :: 3.5 ",
21    "Programming Language :: Python :: 3.6 ",
22    "Programming Language :: Python :: 3.7 ",
23    "Programming Language :: Python :: 3.8 ",
24]
25
26# The rest in alphabetic order
27author = "Rocky Bernstein"
28author_email = "rocky@gnu.org"
29ftp_url = None
30license = "MIT"
31mailing_list = None
32modname = "columnize"
33
34short_desc = "Format a simple (i.e. not nested) list into aligned columns."
35py_modules = [modname]
36
37# VERSION.py sets variable VERSION.
38import os.path
39
40exec(
41    compile(
42        open(os.path.join(os.path.dirname(__file__), "VERSION.py")).read(),
43        os.path.join(os.path.dirname(__file__), "VERSION.py"),
44        "exec",
45    )
46)
47
48tests_require = ["mock"]
49web = "https://github.com/rocky/pycolumnize"
50# tracebacks in zip files are funky and not debuggable
51zip_safe = False
52
53
54def read(*rnames):
55    return open(os.path.join(os.path.dirname(__file__), *rnames), encoding='utf8').read()
56
57
58readme = "README.txt"
59if os.path.exists("README.rst"):
60    readme = "README.rst"
61long_description = read(readme) + "\n"
62