-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'], | ||
|
||
) |