forked from insanum/gcalcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (45 loc) · 1.49 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
44
45
46
47
#!/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=("--wrap=none",))
except ImportError:
long_description = ''
setup(name='gcalcli',
version='4.1.0',
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',
packages=['gcalcli'],
data_files=[('man/man1', ['docs/man1/gcalcli.1'])],
install_requires=[
'python-dateutil',
'google-api-python-client>=1.4',
'httplib2',
'oauth2client',
'six'
],
extras_require={
'vobject': ["vobject"],
'parsedatetime': ["parsedatetime"],
},
entry_points={
'console_scripts':
['gcalcli=gcalcli.gcalcli:main'],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
])