We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92ed92a commit 35e2862Copy full SHA for 35e2862
setup.py
@@ -1,8 +1,10 @@
1
-from distutils.core import setup
2
import ast
3
import os
4
import codecs
5
+from setuptools import setup
6
+
7
8
classifiers=[
9
'Development Status :: 5 - Production/Stable',
10
'Intended Audience :: Developers',
@@ -55,4 +57,13 @@
55
57
install_requires=[
56
58
'six',
59
],
60
+ extras_require={
61
+ ":python_version == '2.6'": ["ordereddict"],
62
+ "lxml:python_implementation == 'CPython'": ["lxml"],
63
+ "genshi": ["genshi"],
64
+ "datrie": ["datrie"],
65
+ "charade": ["charade"],
66
+ "all": ["genshi", "datrie", "charade"],
67
+ "all:python_implementation == 'CPython'": ["lxml"],
68
+ },
69
)
0 commit comments