8000 Add setuptools support · blag/html5lib-python@2a1dcb7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2a1dcb7

Browse files
author
Drew Hubl
committed
Add setuptools support
1 parent f5fd711 commit 2a1dcb7

File tree

1 file changed

+5
-1
lines changed
< 8000 /div>

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
from distutils.core import setup
1+
try:
2+
from setuptools import setup
3+
except ImportError:
4+
from distutils.core import setup
5+
26
import os
37
import codecs
48

0 commit comments

Comments
 (0)
0