summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorJames E. Blair <corvus@gnu.org>2019-06-08 14:19:35 -0700
committerJames E. Blair <corvus@gnu.org>2019-06-08 14:28:18 -0700
commitc44874cfa48bf00b83057033fc7800b35e157702 (patch)
tree052829810af7ecc0c85c94eb68404e492d2ee379 /setup.cfg
Initial commit
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg31
1 files changed, 31 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..91a5f39
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,31 @@
1[metadata]
2name = email_assistant
3summary = Add entries to caldav servers based on email contents
4description-file =
5 README.rst
6author = James E. Blair
7author-email = corvus@gnu.org
8python-requires = >=3.5
9classifier =
10 Intended Audience :: Information Technology
11 Intended Audience :: System Administrators
12 Intended Audience :: End Users/Desktop
13 License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
14 Programming Language :: Python
15 Programming Language :: Python :: 3
16 Programming Language :: Python :: 3.5
17 Topic :: Communications :: Email
18 Topic :: Office/Business :: Scheduling
19
20[pbr]
21warnerrors = True
22
23[entry_points]
24console_scripts =
25 email-assistant = email_assistant.assistant:main
26
27[build_sphinx]
28source-dir = doc/source
29build-dir = doc/build
30all_files = 1
31warning-is-error = 1