|
8 | 8 |
|
9 | 9 | __version__ = "0.3.1"
|
10 | 10 |
|
11 |
| -import sys |
12 |
| -if sys.version_info < (2, 7): |
13 |
| - raise RuntimeError("You are using Python %s.\n" |
14 |
| - "Please apply python2_6.patch first." |
15 |
| - % sys.version.split()[0]) |
16 | 11 | import os
|
17 | 12 | import os.path
|
18 | 13 | import re
|
@@ -60,16 +55,19 @@ def make_release_tree(self, base_dir, files):
|
60 | 55 | url='https://github.com/RKrahl/pytest-dependency',
|
61 | 56 | license='Apache Software License 2.0',
|
62 | 57 | long_description=__doc__,
|
| 58 | + project_urls={ |
| 59 | + 'Documentation': 'https://pytest-dependency.readthedocs.io/', |
| 60 | + 'Source Code': 'https://github.com/RKrahl/pytest-dependency', |
| 61 | + }, |
63 | 62 | py_modules=['pytest_dependency'],
|
64 | 63 | install_requires=['pytest >= 2.8.0'],
|
65 | 64 | classifiers=[
|
66 |
| - 'Development Status :: 3 - Alpha', |
| 65 | + 'Development Status :: 4 - Beta', |
67 | 66 | 'Framework :: Pytest',
|
68 | 67 | 'Intended Audience :: Developers',
|
69 | 68 | 'Topic :: Software Development :: Testing',
|
70 | 69 | 'Programming Language :: Python',
|
71 | 70 | 'Programming Language :: Python :: 2',
|
72 |
| - 'Programming Language :: Python :: 2.6', |
73 | 71 | 'Programming Language :: Python :: 2.7',
|
74 | 72 | 'Programming Language :: Python :: 3',
|
75 | 73 | 'Programming Language :: Python :: 3.2',
|
|
0 commit comments