forked from maiiku/python-intercom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 905 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
26
27
28
29
30
31
32
33
34
35
36
#
# 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__ = '(\d+\.\d+\.(\d+|[a-z]+))'", 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="john@keyes.ie",
license="MIT License",
url="http://github.com/jkeyes/python-intercom",
keywords='Intercom crm python',
classifiers=[],
packages=find_packages(),
include_package_data=True,
install_requires=["requests", "inflection", "certifi", "six"],
zip_safe=False
)