Skip to content

Commit

Permalink
Add check for Python 3 and increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
archangelic committed Oct 20, 2016
1 parent 7f82f7a commit 68ef99a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
#!/usr/bin/env python3
from setuptools import setup
import sys

if not sys.version_info[0] == 3:
sys.exit("Sorry, Cistern only supports Python 3.")

setup(
name="cistern",
version="0.1.3",
version="0.1.4",
license="MIT",
url="https://github.com/archangelic/cistern",
description="Command line tool for downloading torrents from RSS feeds.",
author="Michael Hancock",
author_email="[email protected]",
download_url=(
"https://github.com/archangelic/cistern/archive/v0.1.3.tar.gz"
"https://github.com/archangelic/cistern/archive/v0.1.4.tar.gz"
),
install_requires=[
'click',
Expand Down

0 comments on commit 68ef99a

Please sign in to comment.