mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-28 01:44:29 +08:00
10 lines
193 B
Python
10 lines
193 B
Python
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
if os.path.exists("paver-minilib.zip"):
|
|
import sys
|
|
sys.path.insert(0, "paver-minilib.zip")
|
|
|
|
import paver.tasks
|
|
paver.tasks.main()
|