Skip to content

Commit 9ca612c

Browse files
committed
Merge branch 'setup': review setup.py.
2 parents 1c0bc52 + ebef4bd commit 9ca612c

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

setup.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@
88

99
__version__ = "0.3.1"
1010

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])
1611
import os
1712
import os.path
1813
import re
@@ -60,16 +55,19 @@ def make_release_tree(self, base_dir, files):
6055
url='https://github.com/RKrahl/pytest-dependency',
6156
license='Apache Software License 2.0',
6257
long_description=__doc__,
58+
project_urls={
59+
'Documentation': 'https://pytest-dependency.readthedocs.io/',
60+
'Source Code': 'https://github.com/RKrahl/pytest-dependency',
61+
},
6362
py_modules=['pytest_dependency'],
6463
install_requires=['pytest >= 2.8.0'],
6564
classifiers=[
66-
'Development Status :: 3 - Alpha',
65+
'Development Status :: 4 - Beta',
6766
'Framework :: Pytest',
6867
'Intended Audience :: Developers',
6968
'Topic :: Software Development :: Testing',
7069
'Programming Language :: Python',
7170
'Programming Language :: Python :: 2',
72-
'Programming Language :: Python :: 2.6',
7371
'Programming Language :: Python :: 2.7',
7472
'Programming Language :: Python :: 3',
7573
'Programming Language :: Python :: 3.2',

0 commit comments

Comments
 (0)