xonsh/setup.py
2015-03-07 12:02:04 -06:00

18 lines
304 B
Python
Executable file

"""The xonsh installer."""
import os
import sys
import os, sys
try:
from setuptools import setup
HAVE_SETUPTOOLS = True
except ImportError:
from distutils.core import setup
HAVE_SETUPTOOLS = False
def main():
skw = {
}
setup(**skw)
if __name__ == '__main__':
main()