mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
18 lines
304 B
Python
Executable file
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()
|