Skip to content

Commit 44eef42

Browse files
committed
update README and support versions in setup.py
1 parent 101463f commit 44eef42

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

README.textile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
!https://travis-ci.org/textile/python-textile.svg!:https://travis-ci.org/textile/python-textile !https://coveralls.io/repos/github/textile/python-textile/badge.svg!:https://coveralls.io/github/textile/python-textile?branch=master !https://codecov.io/github/textile/python-textile/coverage.svg!:https://codecov.io/github/textile/python-textile
1+
!https://travis-ci.org/textile/python-textile.svg!:https://travis-ci.org/textile/python-textile !https://coveralls.io/repos/github/textile/python-textile/badge.svg!:https://coveralls.io/github/textile/python-textile?branch=master !https://codecov.io/github/textile/python-textile/coverage.svg!:https://codecov.io/github/textile/python-textile !https://img.shields.io/pypi/pyversions/textile! !https://img.shields.io/pypi/wheel/textile!
22

33
h1. python-textile
44

@@ -8,9 +8,12 @@ h2. Installation
88

99
@pip install textile@
1010

11+
Dependencies:
12+
* "html5lib":https://pypi.org/project/html5lib/
13+
* "regex":https://pypi.org/project/regex/ (The regex package causes problems with PyPy, and is not installed as a dependency in such environments. If you are upgrading a textile install on PyPy which had regex previously included, you may need to uninstall it.)
14+
1115
Optional dependencies include:
12-
* "PIL/Pillow":http://python-pillow.github.io/ (for checking images size)
13-
* "regex":https://pypi.python.org/pypi/regex (for faster unicode-aware string matching).
16+
* "PIL/Pillow":http://python-pillow.github.io/ (for checking image sizes). If needed, install via @pip install 'textile[imagesize]'@
1417

1518
h2. Usage
1619

@@ -39,4 +42,4 @@ bc.. import textile
3942

4043
h3. Notes:
4144

42-
* Active development supports Python 2.7 or later (including Python 3.3+).
45+
* Active development supports Python 3.5 or later.

setup.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,11 @@ def get_version():
4444
'Programming Language :: Python',
4545
'Topic :: Software Development :: Libraries :: Python Modules',
4646
'Programming Language :: Python',
47-
'Programming Language :: Python :: 2',
48-
'Programming Language :: Python :: 2.6',
49-
'Programming Language :: Python :: 2.7',
5047
'Programming Language :: Python :: 3',
51-
'Programming Language :: Python :: 3.2',
52-
'Programming Language :: Python :: 3.3',
53-
'Programming Language :: Python :: 3.4',
5448
'Programming Language :: Python :: 3.5',
5549
'Programming Language :: Python :: 3.6',
50+
'Programming Language :: Python :: 3.7',
51+
'Programming Language :: Python :: 3.8',
5652
],
5753
keywords='textile,text,html markup',
5854
install_requires=[

0 commit comments

Comments
 (0)