-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
25 lines (23 loc) · 872 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
from setuptools import setup, find_packages
required = ['requests == 0.11.1', 'requests-oauth == 0.3.0']
setup(
author='Factual Driver Team',
name='factual-api',
version='1.1.2',
description='Official Python driver for the Factual public API',
long_description=open('README.md').read(),
url='http://github.com/Factual/factual-python-driver',
license='Apache License',
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
),
keywords=['factual'],
packages=find_packages(),
install_requires=required
)