Skip to content

Commit 84bf2fb

Browse files
authored
Merge pull request #16 from joetho786/publishing
Created init and setup.py
2 parents 35dd9b0 + e35242f commit 84bf2fb

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

BunnyCDN/__init__.py

Whitespace-only changes.

setup.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name="bunnycdnpython",
5+
version="0.0.1",
6+
author="mathrithms",
7+
author_email="[email protected]",
8+
description="A python SDK for BunnyCDN",
9+
url="https://github.com/mathrithms/BunnyCDN-Python-Lib.git",
10+
packages=find_packages(),
11+
install_requires=["requests"],
12+
classifiers=[
13+
"Programming Language :: Python :: 3",
14+
"License :: OSI Approved :: MIT License",
15+
"Operating System :: OS Independent",
16+
],
17+
python_requires=">=3.6",
18+
)

0 commit comments

Comments
 (0)