-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 765 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 765 Bytes
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
26
27
28
from setuptools import setup
VERSION = '0.0.2'
LONG_DESCRIPTION = open('README.rst').read()
setup(name='subwrap',
version=VERSION,
description="subwrap - A simple wrapper for subprocess",
long_description=LONG_DESCRIPTION,
author='Reuven V. Gonzales',
author_email='reuven@tobetter.us',
url="https://github.com/ravenac95/subwrap",
license='MIT',
platforms='Unix',
py_modules=['subwrap'],
include_package_data=True,
zip_safe=False,
install_requires=[],
entry_points={},
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: POSIX',
'Programming Language :: Python',
],
)