rubick/joker/setup.py
2013-10-22 07:50:52 -07:00

15 lines
239 B
Python

#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
setup_requires=['d2to1'],
d2to1=True
)