mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
added readme
This commit is contained in:
parent
0071f365f6
commit
770a00c41d
2 changed files with 21 additions and 2 deletions
3
readme.rst
Normal file
3
readme.rst
Normal file
|
@ -0,0 +1,3 @@
|
|||
xonsh
|
||||
=====
|
||||
xonsh is an
|
20
setup.py
20
setup.py
|
@ -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__':
|
||||
|
|
Loading…
Add table
Reference in a new issue