Skip to content

Commit aab7589

Browse files
committed
Added install info for package
1 parent 95bc2c9 commit aab7589

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

setup.cfg

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[nosetests]
2+
logging-clear-handlers=true
3+
verbosity=2
4+
randomize=true
5+
exe=true
6+
with-coverage=true
7+
cover-package=intercom_python_sdk
8+
cover-erase=true
9+
10+
[flake8]
11+
max-line-length=120

setup.py

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
"""
2+
Intercom Python SDK
3+
4+
The unofficial Intercom Python SDK.
5+
6+
The version of the OpenAPI document: 2.9
7+
"""
8+
9+
from setuptools import setup, find_packages # noqa: H301
10+
11+
NAME = "intercom-python-sdk"
12+
VERSION = "0.1.0-dev"
13+
# To install the library, run the following
14+
#
15+
# python setup.py install
16+
#
17+
# prerequisite: setuptools
18+
# http://pypi.python.org/pypi/setuptools
19+
20+
REQUIRES = [
21+
"setuptools",
22+
"uplink",
23+
"bs4",
24+
"marshmallow",
25+
"validator-collection",
26+
"faker",
27+
"requests"
28+
]
29+
30+
setup(
31+
name=NAME,
32+
version=VERSION,
33+
description="Intercom Python SDK",
34+
author="Ryan Gordon",
35+
author_email="mail@ry4n.sh",
36+
url="https://github.com/0xRy4n/intercom-python-sdk.git",
37+
keywords=["Intercom", "Intercom API", "Intercom Python SDK", "Intercom Python API"],
38+
python_requires=">=3.7",
39+
install_requires=REQUIRES,
40+
packages=find_packages(exclude=["test", "tests"]),
41+
include_package_data=True,
42+
license="MIT",
43+
long_description="""\
44+
The unofficial Intercom Python SDK.
45+
"""
46+
)

0 commit comments

Comments
 (0)