Skip to content

Commit

Permalink
package release
Browse files Browse the repository at this point in the history
  • Loading branch information
BdVade committed Mar 13, 2022
1 parent 6f45e17 commit 955b0c1
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ A python sdk for interacting with the [Credo API](https://developers.credo.co/re

----

## Installation
To Install run

`pip install credo-python`

## Usage

---
Expand Down
14 changes: 14 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
attrs==21.4.0
certifi==2021.10.8
charset-normalizer==2.0.12
idna==3.3
iniconfig==1.1.1
packaging==21.3
pluggy==1.0.0
py==1.11.0
pyparsing==3.0.7
pytest==7.0.1
requests==2.27.1
sgmllib3k==1.0.0
tomli==2.0.1
urllib3==1.26.8
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import pathlib
from setuptools import setup

# The directory containing this file
HERE = pathlib.Path(__file__).parent

# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="credo-python",
version="1.0.0",
description="A Python Wrapper for the Credo API",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/BdVade/credo-python",
author="Aderibigbe Victor",
author_email="[email protected]",
keywords = ['credo', 'python', 'sdk'],
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools'
],
packages=["credo"],
include_package_data=True,
install_requires=['requests'],

)

0 comments on commit 955b0c1

Please sign in to comment.