forked from intercom/python-intercom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (36 loc) · 1.06 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
#
# Copyright 2012 John Keyes
#
# http://jkeyes.mit-license.org/
#
import os
import re
from setuptools import find_packages
from setuptools import setup
with open(os.path.join('intercom', '__init__.py')) as init:
source = init.read()
m = re.search("__version__ = '(.*)'", source, re.M)
__version__ = m.groups()[0]
with open('README.rst') as readme:
long_description = readme.read()
setup(
name="python-intercom",
version=__version__,
description="Intercom API wrapper",
long_description=long_description,
author="John Keyes",
author_email="[email protected]",
license="MIT License",
url="http://github.com/jkeyes/python-intercom",
keywords='Intercom crm python',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
packages=find_packages(),
include_package_data=True,
install_requires=["requests", "inflection", "certifi", "six", "pytz"],
zip_safe=False
)