-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1.05 KB
/
setup.py
File metadata and controls
29 lines (28 loc) · 1.05 KB
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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
setup(
name='pyquickbase',
version='0.2.3',
author='Kevin V Seelbach',
author_email='kevin.seelbach@gmail.com',
py_modules=['quickbase'],
packages=find_packages(),
url='http://kevinseelbach.github.io/pyQuickBase/',
description='pyQuickBase is a Python interface for the Intuit QuickBase API',
long_description=open('README.rst').read(),
classifiers=['Development Status :: 4 - Beta', 'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
'Environment :: Web Environment'
],
install_requires=[
'lxml >= 3.2.1',
'requests >= 1.1.0',
'chardet >= 2.1.1',
],
)