-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
40 lines (34 loc) · 963 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
38
39
40
from setuptools import setup
VERSION = "1.0.3"
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="sbclient",
version=VERSION,
author="Hurricane Labs",
author_email="[email protected]",
py_modules=["sbclient"],
description="sbclient - CLI Splunkbase client",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"click",
"python-dateutil",
"defusedxml",
"lxml",
"requests",
"six>=1.12.0"
],
entry_points={
"console_scripts": [
"sbclient = sbclient:cli",
]
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
],
bugtrack_url="https://github.com/HurricaneLabs/sbclient/issues",
)