This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
forked from insanum/gcalcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.38 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst',
format='markdown_github',
extra_args=("--no-wrap",))
except:
long_description = ''
setup(name='gcalcli',
version='3.3.2',
maintainer='Eric Davis, Brian Hartvigsen',
maintainer_email='[email protected], [email protected]',
description='Google Calendar Command Line Interface',
long_description=long_description,
url='https://github.com/insanum/gcalcli',
license='MIT',
scripts=['gcalcli'],
install_requires=[
'python-dateutil',
'python-gflags',
'httplib2',
'google-api-python-client',
'oauth2client<=1.4.12'
],
extras_require={
'vobject': ["vobject"],
'parsedatetime': ["parsedatetime"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
])