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 27 28 29 30 31
|
From 7e515d0d2e7f4f1f446aed804cb704f15732f43d Mon Sep 17 00:00:00 2001
From: Jakub Wilk <jwilk@debian.org>
Date: Thu, 8 Oct 2015 13:03:40 -0700
Subject: don't use setuptools
Forwarded: not-needed
Last-Update: 2013-12-26
Patch-Name: no-setuptools.diff
---
setup.py | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/setup.py b/setup.py
index 41e3816..c1ff47f 100644
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-from setuptools import setup
+from distutils.core import setup
setup (
name='roman',
@@ -27,7 +27,5 @@ setup (
url = 'http://pypi.python.org/pypi/roman',
package_dir={"": "src"},
py_modules=["roman"],
- include_package_data = True,
test_suite = 'tests',
- zip_safe = True,
)
|