-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (23 loc) · 853 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='py2gc',
version='1.0.6',
description='Add events to a Google Calendar from the command line.',
license="MIT",
long_description=long_description,
long_description_content_type='text/markdown',
author='Stefan Pfeuffer',
author_email='[email protected]',
url="https://github.com/stefanpf/py2gc",
packages=find_packages(),
entry_points={'console_scripts': ['py2gc = py2gc.py2gc:main']},
install_requires=['httplib2', 'argparse', 'oauth2client', 'google-api-python-client', 'pathlib'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)