-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (34 loc) · 923 Bytes
/
setup.py
File metadata and controls
41 lines (34 loc) · 923 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
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup
from shelltest import __version__
_extras = {
'test': [
'pytest'
]
}
setup(name='shelltest',
description='Shell tester',
packages=['shelltest'],
version=__version__,
url='https://github.com/jthacker/shelltest',
download_url='https://github.com/jthacker/shelltest/archive/v{}.tar.gz'.format(__version__),
author='jthacker',
author_email='thacker.jon@gmail.com',
keywords=['shell', 'testing'],
classifiers=[],
extras_require=_extras,
install_requires=[
'terseparse'
],
setup_requires=['pytest-runner'],
tests_require=_extras['test'],
entry_points = {
'console_scripts': [
'shelltest=shelltest.cli:main'
]},
python_requires='>=3',
long_description="""
How to Install
--------------
.. code:: bash
pip install shelltest
""")