Browse Source

Distribute was merged back into setuptools, so use setuptools

tags/nilmdb-1.10.1
Jim Paris 9 years ago
parent
commit
74f633c9da
1 changed files with 1 additions and 10 deletions
  1. +1
    -10
      setup.py

+ 1
- 10
setup.py View File

@@ -6,15 +6,6 @@
# Then just package it up:
# python setup.py sdist

# This is supposed to be using Distribute:
#
# distutils provides a "setup" method.
# setuptools is a set of monkeypatches on top of that.
# distribute is a particular version/implementation of setuptools.
#
# So we don't really know if this is using the old setuptools or the
# Distribute-provided version of setuptools.

import traceback
import sys
import os
@@ -109,7 +100,7 @@ setup(name='nilmdb',
'coverage',
'numpy',
],
setup_requires = [ 'distribute',
setup_requires = [ 'setuptools',
],
install_requires = [ 'decorator',
'cherrypy >= 3.2',


Loading…
Cancel
Save