forked from mozilla/stmocli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 775 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
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
from setuptools import setup, find_packages
test_deps = [
'coverage',
'pytest-cov',
'pytest',
'httmock',
'mock;python_version<"3.3"'
]
extras = {
'testing': test_deps,
}
setup(
name='stmocli',
version='0.1',
description='CLI for managing re:dash queries in plain text.',
author='Ryan Harter',
author_email='[email protected]',
url='https://github.com/harterrt/stmocli',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=[
"attrs",
"redash-client",
"click",
],
tests_require=test_deps,
extras_require=extras,
entry_points={
"console_scripts": [
"stmocli=stmocli.cli:cli",
]
},
)