-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
50 lines (41 loc) · 1.34 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
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from __future__ import print_function
import sys
from setuptools import find_packages
from setuptools import setup
import hubspot_oauth2client
if sys.version_info < (2, 7):
print(
'hubspot_oauth2client requires Python 2 version >= 2.7.',
file=sys.stderr)
sys.exit(1)
install_requires = [
'requests>=2.13',
]
long_desc = (
"hubspot_oauth2client is a lightweight client library for OAuth 2.0 "
"that works with Hubspot and mimics a subset of Google’s oauth2client "
"API.")
version = hubspot_oauth2client.__version__
setup(
name='hubspot_oauth2client',
version=version,
description='Hubspot OAuth 2.0 client library',
long_description=long_desc,
author='Anton Strogonoff',
url='http://github.com/strogonoff/hubspot_oauth2client/',
install_requires=install_requires,
packages=find_packages(),
license='BSD 2-clause',
keywords=['hubspot', 'oauth 2.0', 'http', 'client'],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Topic :: Internet :: WWW/HTTP',
],
)