-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 908 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
27
28
from distutils.core import setup
from fullcontact import VERSION
setup(
name='fullcontact-python',
version=VERSION,
packages=['fullcontact'],
url='https://github.com/cyberlake/fullcontact-python',
license='MIT',
long_description=open('README.md', 'r').read(),
author='Amil Osmanli',
author_email='[email protected]',
description='FullContact API SDK for Python',
install_requires=[
'requests',
],
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)