blob: ee2e91371288e5c3a2d5baf4aaefa9940a40a681 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
Description: Do not use setuptools.
Author: Daniele Tricoli <eriol@mornie.org>
Forwarded: not-needed
Last-Update: 2013-05-10
--- a/setup.py
+++ b/setup.py
@@ -5,11 +5,6 @@
import os
import re
-try:
- import setuptools
-except ImportError:
- pass # No 'develop' command, oh well.
-
base_path = os.path.dirname(__file__)
# Get the version (borrowed from SQLAlchemy)
@@ -49,6 +44,4 @@
'urllib3.contrib',
],
requires=requirements,
- tests_require=tests_requirements,
- test_suite='test',
)
|