Skip to content

Commit

Permalink
MAINT: Fix dependencies, versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sebix committed Sep 17, 2017
1 parent 94224e1 commit 54ac622
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
@@ -1,2 +1,3 @@
html5lib>=1.0b10
Pillow==3.0.0
Pillow==3.0.0
regex
9 changes: 7 additions & 2 deletions setup.py
Expand Up @@ -55,10 +55,15 @@ def get_version():
'Programming Language :: Python :: 3.6',
],
keywords='textile,text,html markup',
install_requires=['six',],
install_requires=[
'six',
'html5lib>=0.999999999',
],
extras_require={
':python_version=="2.6"': ['ordereddict>=1.1'],
'develop': ['regex', 'pytest', 'pytest-cov'],
'develop': ['pytest', 'pytest-cov'],
'imagesize': ['Pillow>=3.0.0'],
'regex': ['regex'],
},
entry_points={'console_scripts': ['pytextile=textile.__main__:main']},
setup_requires=['pytest-runner'],
Expand Down

0 comments on commit 54ac622

Please sign in to comment.