forked from millioner/Python-contact-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.24 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
#!/usr/bin/env python
from setuptools import setup
setup(name='python-contact-importer',
version='0.1',
description='Allows to export user contacts from Google, Yahoo! and Hotmail.',
author='Millioner',
author_email='[email protected]',
url='https://github.com/millioner/Python-contact-importer',
packages=['contact_importer', ],
include_package_data = True, # include everything in source control
zip_safe=False,
install_requires=['PyCrypto', 'oauth2', ],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Development Status :: 4 - Beta",
'Environment :: Web Environment',
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Social Integration",
"Framework :: Django",
],
long_description = """\
Allows to export user contacts from Google, Yahoo! and Hotmail. Uses OAuth protocol for working with Google and Yahoo!. And Microsoft's "Delegated authentification" for Hotmail.
"""
)