chiark / gitweb /
basic setup.py file
[gooswapper] / setup.py
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;',
+          ],
+      )