mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 18:46:38 -04:00
23 lines
542 B
Python
23 lines
542 B
Python
--- 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():
|