|
16 | 16 |
|
17 | 17 |
|
18 | 18 | def read(*parts): |
19 | | - return codecs.open(os.path.join(os.path.dirname(__file__), *parts), encoding='utf-8').read() |
| 19 | + return codecs.open(os.path.join(os.path.dirname(__file__), *parts), |
| 20 | + encoding='utf-8').read() |
20 | 21 |
|
21 | 22 |
|
22 | 23 | classifiers = [ |
23 | 24 | 'Development Status :: 4 - Beta', |
24 | 25 | 'Intended Audience :: Developers', |
25 | 26 | 'License :: OSI Approved :: MIT License', |
26 | 27 | 'Programming Language :: Python :: 2.7', |
| 28 | + 'Programming Language :: Python :: 3.3', |
27 | 29 | 'Programming Language :: Python :: 3.4', |
28 | 30 | 'Topic :: Software Development :: Libraries :: Python Modules', |
29 | 31 | 'Topic :: Software Development :: Testing', |
30 | 32 | 'Topic :: Text Processing :: Markup :: XML' |
31 | 33 | ] |
32 | 34 |
|
33 | 35 | setup(name='xmlunittest', |
34 | | - version='0.3.0', |
| 36 | + version='0.3.1', |
35 | 37 | description='Library using lxml and unittest for unit testing XML.', |
36 | 38 | long_description=read('README.rst'), |
37 | 39 | author='Florian Strzelecki', |
38 | 40 | author_email='florian.strzelecki@gmail.com', |
39 | 41 | license='MIT', |
40 | 42 | url='http://python-xmlunittest.readthedocs.org/en/latest/', |
41 | 43 | py_modules=['xmlunittest'], |
42 | | - install_requires=['lxml>=3.3.6'], |
| 44 | + install_requires=['lxml>=2.3,<3.4.0'], |
43 | 45 | classifiers=classifiers) |
44 | | - |
|
0 commit comments