Skip to content

Commit

Permalink
add python3 specific check
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskiehl committed Aug 22, 2017
1 parent 4ad3d4e commit b96d1e7
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Script for setuptools."""

import sys
from setuptools import setup, find_packages


Expand All @@ -9,6 +9,8 @@
with open('version.txt', 'r') as f:
version = f.read()

deps = ['wxpython==4.0.0b1'] if sys.version[0] == '3' else []

setup(
name='Gooey',
version=version,
Expand All @@ -19,10 +21,7 @@
'application with one line'),
license='MIT',
packages=find_packages(),
install_requires=[
'wxpython==4.0.0b1',
'Rx==1.5.9'
],
install_requires=deps,
include_package_data=True,
dependency_links = ["http://www.wxpython.org/download.php"],
classifiers = [
Expand Down

0 comments on commit b96d1e7

Please sign in to comment.