added readme

This commit is contained in:
Anthony Scopatz 2015-03-07 12:09:30 -06:00
parent 0071f365f6
commit 770a00c41d
2 changed files with 21 additions and 2 deletions

3
readme.rst Normal file
View file

@ -0,0 +1,3 @@
xonsh
=====
xonsh is an

View file

@ -9,9 +9,25 @@ except ImportError:
from distutils.core import setup
HAVE_SETUPTOOLS = False
VERSION = '0.1'
def main():
skw = {
}
with open('readme.rst', 'r') as f:
readme = f.read()
skw = dict(
name='xonsh',
description='an exotic, usable shell',
long_description=readme,
license='BSD',
version=VERSION,
author='Anthony Scopatz',
maintainer='Anthony Scopatz',
author_email='scopatz@gmail.com',
url='https://github.com/scopatz/xonsh',
platforms='Cross Platform',
classifiers = ['Programming Language :: Python :: 3'],
packages=['xonsh'],
)
setup(**skw)
if __name__ == '__main__':