forked from intercom/python-intercom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 832 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 832 Bytes
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
import setuptools
from intercom import __version__
with open('README.rst') as readme:
long_description = readme.read()
setuptools.setup(
name="intercom",
version=__version__,
author="Dimosthenis Schizas",
author_email="dimos@hackthebox.eu",
description="Intercom API Python wrapper",
long_description=long_description,
url="https://github.com/dimoschi/python-intercom",
keywords='Intercom CRM Python',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
package_dir={"": "intercom"},
packages=setuptools.find_packages(where="intercom"),
python_requires=">=3.8",
)