forked from intercom/python-intercom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 796 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
#
# Copyright 2012 John Keyes
#
# http://jkeyes.mit-license.org/
#
import os
import re
from setuptools import find_packages
from setuptools import setup
with file(os.path.join('intercom', 'intercom.py')) as init:
source = init.read()
m = re.search("__version__ = '(\d+\.\d+\.\d+)'", source, re.M)
__version__ = m.groups()[0]
setup(
name="python-intercom",
version=__version__,
description="Intercom API wrapper",
long_description=open('README').read(),
author="John Keyes",
author_email="[email protected]",
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"],
zip_safe=False
)