Browse Source

remove gooey core import from setup.py

wxpy3
chriskiehl 7 years ago
parent
commit
4ad3d4e71c
2 changed files with 4 additions and 2 deletions
  1. 5
      setup.py
  2. 1
      version.txt

5
setup.py

@ -6,7 +6,8 @@ from setuptools import setup, find_packages
with open('README.md') as readme:
long_description = readme.read()
version = __import__('gooey').__version__
with open('version.txt', 'r') as f:
version = f.read()
setup(
name='Gooey',
@ -19,7 +20,7 @@ setup(
license='MIT',
packages=find_packages(),
install_requires=[
'wxpython==5.7',
'wxpython==4.0.0b1',
'Rx==1.5.9'
],
include_package_data=True,

1
version.txt

@ -0,0 +1 @@
2.0.0
Loading…
Cancel
Save