-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 959 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from distutils.core import setup
setup(
name = "popen",
packages = ['popen'],
version = "0.1.20",
description = "A shell-like DSL front for subprocess.Popen",
long_description = open('README.rst').read(),
author = "philipbergen",
author_email = "philipbergen at gmail com",
url = 'https://github.com/philipbergen/popen',
keywords = "bash shell popen subprocess".split(),
classifiers=["Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development"],
package_data = {
'popen': ['*.rst'],
}
)