blob: 16eb6e821ee990c13e3b38103f3aa037d3d88a33 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- setup.py.orig 2010-05-05 05:55:08 UTC
+++ setup.py
@@ -1,18 +1,16 @@
#!/usr/bin/env python
"""Distutils setup file"""
-import ez_setup
-ez_setup.use_setuptools()
from setuptools import setup
# Metadata
-PACKAGE_NAME = "DecoratorTools"
+PACKAGE_NAME = "decoratortools"
PACKAGE_VERSION = "1.8"
PACKAGES = ['peak', 'peak.util']
def get_description():
# Get our long description from the documentation
- f = file('README.txt')
+ f = open('README.txt')
lines = []
for line in f:
if not line.strip():
|