forked from fullcontact/fullcontact.py
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (33 loc) · 1.05 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
"""
FullContact.py
--------------
Simple Python interface for FullContact, using Requests.
"""
from setuptools import setup
setup(
name='FullContact-AIO',
version='0.0.8',
url='https://github.com/nitanmarcel/fullcontact-aio',
license='MIT',
author='Marcel Alexandru Nitan',
author_email='nitan.marcel@gmail.com',
description='Simple Python interface for FullContact, using aiohttp',
long_description='Simple Python interface for FullContact, using aiohttp',
packages=['fullcontact_aio'],
zip_safe=False,
platforms='any',
install_requires=[
'aiohttp',
],
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)