From: Matthew Vernon Date: Fri, 11 Jun 2021 15:25:18 +0000 (+0100) Subject: basic setup.py file X-Git-Tag: v0.3~2 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~matthewv/git?a=commitdiff_plain;h=7a231847a1234952333c5f1c0b9eab91ff7df604;p=gooswapper basic setup.py file --- diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..fcc7d27 --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python3 + +from distutils.core import setup + +setup(name='gooswapper', + version=0.3, + description='Exchange / Google calendar sync', + author='Matthew Vernon', + author_email='mv3@sanger.ac.uk', + url='https://www.chiark.greenend.org.uk/ucgi/~matthewv/git/gooswapper/', + scripts=['gooswapper.py'], + requires=['exchangelib ( >= 1.12.2 )', 'googleapiclient ( >= 1.5.5 )'], + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Environment :: Console', + 'Intended Audience :: End Users/Desktop', + 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 3', + 'Topic :: Communications;', + ], + )