diff options
author | Michele Simionato <michele.simionato@gmail.com> | 2015-07-22 09:34:36 +0200 |
---|---|---|
committer | Michele Simionato <michele.simionato@gmail.com> | 2015-07-22 09:34:36 +0200 |
commit | c7707df20f17102dba58a19eea1b58e8812a3987 (patch) | |
tree | 7b1d3a6cee9bb3cf3fd19a3a65687190e7131661 /setup.py | |
parent | bfe11019156796384516d6038f7a66a87cca7e35 (diff) | |
download | python-decorator-git-c7707df20f17102dba58a19eea1b58e8812a3987.tar.gz |
Made setuptools mandatory, since now I am generating a wheel and build dependencies are free
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1,8 +1,4 @@ -import sys -if sys.version >= '3': - from setuptools import setup -else: - from distutils.core import setup +from setuptools import setup dic = {} exec(open('src/decorator.py').read(), dic) |