We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52c70ee commit 614f05eCopy full SHA for 614f05e
setup.py
@@ -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