summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2016-10-13 10:39:41 -0500
committerMonty Taylor <mordred@inaugust.com>2016-10-13 10:39:41 -0500
commit644d93f4d632c302cc8cd8ef5c465acfa4e478d5 (patch)
treef1fae88cdafc423137507b1a8c0f16051d6b7c2a /setup.cfg
Initial Cookiecutter Commit.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg51
1 files changed, 51 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..880b240
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,51 @@
1[metadata]
2name = ttrun
3summary = Simple CLI to run testtools tests
4description-file =
5 README.rst
6author = OpenStack
7author-email = openstack-dev@lists.openstack.org
8home-page = http://www.openstack.org/
9classifier =
10 Environment :: OpenStack
11 Intended Audience :: Information Technology
12 Intended Audience :: System Administrators
13 License :: OSI Approved :: Apache Software License
14 Operating System :: POSIX :: Linux
15 Programming Language :: Python
16 Programming Language :: Python :: 2
17 Programming Language :: Python :: 2.7
18 Programming Language :: Python :: 3
19 Programming Language :: Python :: 3.3
20 Programming Language :: Python :: 3.4
21
22[files]
23packages =
24 ttrun
25
26[build_sphinx]
27source-dir = doc/source
28build-dir = doc/build
29all_files = 1
30
31[upload_sphinx]
32upload-dir = doc/build/html
33
34[compile_catalog]
35directory = ttrun/locale
36domain = ttrun
37
38[update_catalog]
39domain = ttrun
40output_dir = ttrun/locale
41input_file = ttrun/locale/ttrun.pot
42
43[extract_messages]
44keywords = _ gettext ngettext l_ lazy_gettext
45mapping_file = babel.cfg
46output_file = ttrun/locale/ttrun.pot
47
48[build_releasenotes]
49all_files = 1
50build-dir = releasenotes/build
51source-dir = releasenotes/source \ No newline at end of file