This repository has been archived on 2015-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
psh/setup.py
2015-02-26 16:47:39 -05:00

21 lines
632 B
Python

import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "psh",
version = "0.0.1",
author = "WPI Augmented Unix Userland MQP",
author_email = "jsh@wpi.edu",
description = ("Simple Unix shell inspired by PowerShell"),
license = "MIT",
packages=['psh'],
long_description=read('README.md'),
)