Skip to content

Commit 66ba339

Browse files
committed
Add versioning info
1 parent 6367a79 commit 66ba339

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

scuttle/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
from .wrapper import scuttle
2+
3+
__version__ = "0.0.1"

setup.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
try:
2+
from setuptools import setup
3+
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

Comments
 (0)