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 6367a79 commit 66ba339Copy full SHA for 66ba339
scuttle/__init__.py
@@ -1 +1,3 @@
1
from .wrapper import scuttle
2
+
3
+__version__ = "0.0.1"
setup.py
@@ -0,0 +1,23 @@
+try:
+ from setuptools import setup
+except ImportError:
4
+ from distutils.core import setup
5
6
+from scuttle import __version__
7
8
+setup(
9
+ name='scuttle',
10
+ version=__version__,
11
+ packages=[
12
+ 'scuttle',
13
+ 'scuttle.versions'
14
+ ],
15
+ url="http://github.com/scuttle/python-scuttle",
16
+ license="MIT",
17
+ author="Ross Williams",
18
+ author_email="[email protected]",
19
+ description="Python wrapper for SCUTTLE API.",
20
+ install_requires=[
21
+ "requests"
22
+ ]
23
+)
0 commit comments