Skip to content

Commit dc00ade

Browse files
clean up setup.py
1 parent a12c14c commit dc00ade

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

setup.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
1-
"""
2-
apipkg: namespace control and lazy-import mechanism.
3-
4-
compatible to CPython 2.3 through to CPython 3.1, Jython, PyPy
5-
6-
(c) 2009 holger krekel, Holger Krekel
7-
"""
81
import re
92
from setuptools import setup
103

4+
115
def get_version():
126
VERSION_RE = re.compile("__version__ = \'(.*)\'", re.M)
137
with open('apipkg.py') as fp:
148
return VERSION_RE.search(fp.read()).group(1)
159

10+
1611
def main():
1712
setup(
1813
name='apipkg',

0 commit comments

Comments
 (0)