Removes distutils code, old aliases, and bad url from setup.py

Change-Id: I63031ca0ae1cdbfe5a6b220c56a63518471b7f9e
This commit is contained in:
Jose Idar 2014-05-22 14:05:01 -05:00
parent 33910826ad
commit 29260c53bd
1 changed files with 2 additions and 16 deletions

View File

@ -13,21 +13,8 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import os
import sys
try:
from setuptools import setup, find_packages
from setuptools.command.install import install as _install
except ImportError:
from distutils.core import setup, find_packages
from distutils.command.install import install as _install
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
from setuptools import setup, find_packages
from setuptools.command.install import install as _install
def print_cafe_mug():
@ -77,7 +64,6 @@ setup(
open('HISTORY.rst').read()),
author='Rackspace Cloud QE',
author_email='cloud-cafe@lists.rackspace.com',
url='http://rackspace.com',
packages=find_packages(),
include_package_data=True,
install_requires=requires,