Skip to content

Commit 614f05e

Browse files
committed
Add setup.py
1 parent 52c70ee commit 614f05e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from setuptools import setup
2+
3+
setup(name='codebottle',
4+
version='0.0.1',
5+
description="A Python library to interact with CodeBottle's API",
6+
url='https://github.com/codebottle-io/codebottle-python',
7+
author='Luke J.',
8+
author_email='support@codebottle.io',
9+
license='GNL',
10+
packages=['codebottle'],
11+
install_requires=['requests'],
12+
include_package_data=True,
13+
zip_safe=False)

0 commit comments

Comments
 (0)