chiark / gitweb /
basic setup.py file
authorMatthew Vernon <mv3@sanger.ac.uk>
Fri, 11 Jun 2021 15:25:18 +0000 (16:25 +0100)
committerMatthew Vernon <mv3@sanger.ac.uk>
Fri, 11 Jun 2021 15:32:42 +0000 (16:32 +0100)
setup.py [new file with mode: 0755]

diff --git a/setup.py b/setup.py
new file mode 100755 (executable)
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;',
+          ],
+      )