Skip to content

Commit 955b0c1

Browse files
committed
package release
1 parent 6f45e17 commit 955b0c1

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ A python sdk for interacting with the [Credo API](https://developers.credo.co/re
44

55
----
66

7+
## Installation
8+
To Install run
9+
10+
`pip install credo-python`
11+
712
## Usage
813

914
---

requirements.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
attrs==21.4.0
2+
certifi==2021.10.8
3+
charset-normalizer==2.0.12
4+
idna==3.3
5+
iniconfig==1.1.1
6+
packaging==21.3
7+
pluggy==1.0.0
8+
py==1.11.0
9+
pyparsing==3.0.7
10+
pytest==7.0.1
11+
requests==2.27.1
12+
sgmllib3k==1.0.0
13+
tomli==2.0.1
14+
urllib3==1.26.8

setup.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import pathlib
2+
from setuptools import setup
3+
4+
# The directory containing this file
5+
HERE = pathlib.Path(__file__).parent
6+
7+
# The text of the README file
8+
README = (HERE / "README.md").read_text()
9+
setup(
10+
name="credo-python",
11+
version="1.0.0",
12+
description="A Python Wrapper for the Credo API",
13+
long_description=README,
14+
long_description_content_type="text/markdown",
15+
url="https://github.com/BdVade/credo-python",
16+
author="Aderibigbe Victor",
17+
author_email="victoraderibigbe03@gmail.com",
18+
keywords = ['credo', 'python', 'sdk'],
19+
license="MIT",
20+
classifiers=[
21+
"License :: OSI Approved :: MIT License",
22+
"Programming Language :: Python :: 3",
23+
"Programming Language :: Python :: 3.8",
24+
'Intended Audience :: Developers', # Define that your audience are developers
25+
'Topic :: Software Development :: Build Tools'
26+
],
27+
packages=["credo"],
28+
include_package_data=True,
29+
install_requires=['requests'],
30+
31+
)

0 commit comments

Comments
 (0)