Skip to content

Commit 6dae311

Browse files
authored
Merge pull request #20 from eternal-f1ame/final-changes
updated setup.py
2 parents 855fff8 + d89cc3f commit 6dae311

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

setup.py

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
from setuptools import setup, find_packages
22

3+
4+
def readall(path):
5+
with open(path) as fp:
6+
return fp.read()
7+
8+
39
setup(
410
name="bunnycdnpython",
5-
version="0.0.2",
11+
version="0.0.3",
612
author="mathrithms",
713
author_email="[email protected]",
814
description="A python SDK for BunnyCDN",
15+
long_description=readall("README.md"),
16+
long_description_content_type="text/markdown",
917
url="https://github.com/mathrithms/BunnyCDN-Python-Lib.git",
1018
packages=find_packages(),
1119
install_requires=["requests"],
@@ -14,5 +22,5 @@
1422
"License :: OSI Approved :: MIT License",
1523
"Operating System :: OS Independent",
1624
],
17-
python_requires=">=3.6",
25+
python_requires=">=2.7, !=3.0., !=3.1., !=3.2., !=3.3., !=3.4.",
1826
)

0 commit comments

Comments
 (0)