Skip to content

Commit

Permalink
Fix setup; use universal whl (#66)
Browse files Browse the repository at this point in the history
* Update setup.py; fix for py2, bump version

* Create setup.cfg
  • Loading branch information
spyoungtech authored Dec 11, 2018
1 parent 7cf8096 commit aa51b0f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[bdist_wheel]
universal = 1

[metadata]
license_file = LICENSE
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
from setuptools import setup
from io import open


with open('README.rst', 'rt', encoding='utf8') as f:
readme = f.read()

setup(
name='behave-webdriver',
version='0.2.0',
version='0.2.1',
url='https://github.com/spyoungtech/behave-webdriver/',
license='MIT',
author='Spencer Young',
Expand Down

0 comments on commit aa51b0f

Please sign in to comment.