-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.08 KB
/
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
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
from setuptools import setup
# This needs to have the following format - see Makefile 'upload' target.
VERSION = '1.0.4'
setup(name='pystdin',
version=VERSION,
include_package_data=False,
url='https://github.com/terrycojones/pystdin',
download_url='https://github.com/terrycojones/pystdin',
author='Terry Jones',
author_email='[email protected]',
keywords=['python stdin standard input'],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license='MIT',
scripts=['pystdin.py'],
description=('Wrap command-line Python code in a loop over standard '
'input.'),
extras_require={
'dev': [
'flake8',
'pytest',
]
})