Skip to content

Commit

Permalink
bug fix + build
Browse files Browse the repository at this point in the history
  • Loading branch information
Sajadrahimi committed May 4, 2021
1 parent c70fcf1 commit ef049a2
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
Binary file modified dist/ArvanClient-0.0.1-py3-none-any.whl
Binary file not shown.
Binary file modified dist/ArvanClient-0.0.1.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
# replace with your username:
name = ArvanClient
version = 0.0.1
version = 0.0.2
author = Sajad Rahimi
author_email = [email protected]
description = A Python SDK for ArvanCloud API
Expand Down
25 changes: 24 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
import setuptools

setuptools.setup()
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(
name="ArvanClient",
version="0.0.2",
author="Sajad Rahimi",
author_email="[email protected]",
description="A Python SDK for ArvanCloud API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sajadrahimi/arvan-client",
project_urls={
"Bug Tracker": "https://github.com/sajadrahimi/arvan-client/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
)

0 comments on commit ef049a2

Please sign in to comment.