Skip to content

Commit 4eda6bc

Browse files
authored
Merge pull request #54 from textile/fix-dependencies
MAINT: Fix dependencies, versions
2 parents 94224e1 + 54ac622 commit 4eda6bc

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
html5lib>=1.0b10
2-
Pillow==3.0.0
2+
Pillow==3.0.0
3+
regex

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,15 @@ def get_version():
5555
'Programming Language :: Python :: 3.6',
5656
],
5757
keywords='textile,text,html markup',
58-
install_requires=['six',],
58+
install_requires=[
59+
'six',
60+
'html5lib>=0.999999999',
61+
],
5962
extras_require={
6063
':python_version=="2.6"': ['ordereddict>=1.1'],
61-
'develop': ['regex', 'pytest', 'pytest-cov'],
64+
'develop': ['pytest', 'pytest-cov'],
65+
'imagesize': ['Pillow>=3.0.0'],
66+
'regex': ['regex'],
6267
},
6368
entry_points={'console_scripts': ['pytextile=textile.__main__:main']},
6469
setup_requires=['pytest-runner'],

0 commit comments

Comments
 (0)