chiark / gitweb /
add note on finding google calendar ID
[gooswapper] / setup.py
1 #!/usr/bin/env python3
2
3 from distutils.core import setup
4
5 setup(name='gooswapper',
6       version=0.3,
7       description='Exchange / Google calendar sync',
8       author='Matthew Vernon',
9       author_email='mv3@sanger.ac.uk',
10       url='https://www.chiark.greenend.org.uk/ucgi/~matthewv/git/gooswapper/',
11       scripts=['gooswapper.py'],
12       requires=['exchangelib ( >= 1.12.2 )', 'googleapiclient ( >= 1.5.5 )'],
13       classifiers=[
14           'Development Status :: 3 - Alpha',
15           'Environment :: Console',
16           'Intended Audience :: End Users/Desktop',
17           'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
18           'Operating System :: OS Independent',
19           'Programming Language :: Python :: 3',
20           'Topic :: Communications;',
21           ],
22       )