mirror of
https://github.com/saymrwulf/zipline.git
synced 2026-05-14 20:58:10 +00:00
9 lines
193 B
Python
9 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()
|