Skip to content

Commit

Permalink
Added install info for package
Browse files Browse the repository at this point in the history
  • Loading branch information
0xRy4n committed Jul 31, 2023
1 parent 95bc2c9 commit aab7589
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
11 changes: 11 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[nosetests]
logging-clear-handlers=true
verbosity=2
randomize=true
exe=true
with-coverage=true
cover-package=intercom_python_sdk
cover-erase=true

[flake8]
max-line-length=120
46 changes: 46 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
"""
Intercom Python SDK
The unofficial Intercom Python SDK.
The version of the OpenAPI document: 2.9
"""

from setuptools import setup, find_packages # noqa: H301

NAME = "intercom-python-sdk"
VERSION = "0.1.0-dev"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = [
"setuptools",
"uplink",
"bs4",
"marshmallow",
"validator-collection",
"faker",
"requests"
]

setup(
name=NAME,
version=VERSION,
description="Intercom Python SDK",
author="Ryan Gordon",
author_email="[email protected]",
url="https://github.com/0xRy4n/intercom-python-sdk.git",
keywords=["Intercom", "Intercom API", "Intercom Python SDK", "Intercom Python API"],
python_requires=">=3.7",
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
license="MIT",
long_description="""\
The unofficial Intercom Python SDK.
"""
)

0 comments on commit aab7589

Please sign in to comment.