-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
47 lines (39 loc) · 1.11 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
35
36
37
38
39
40
41
42
43
44
45
46
47
import sys
import setuptools
if sys.version_info[0] != 3 or sys.version_info[1] < 4:
sys.exit("corelight-client currently requires Python >= 3.4")
def readme():
with open('README.rst') as f:
return f.read()
setuptools.setup(name="corelight-client",
version="1.5.12",
description="Corelight API client",
long_description=readme(),
url="https://github.com/corelight/corelight-client",
author="Corelight",
author_email="[email protected]",
license="BSD",
packages=["client"],
zip_safe=False,
obsoletes=["brobox_client"],
scripts=[
"bin/corelight-client",
"bin/bro-pkg-bundle",
# Legacy script, to be removed.
"bin/brobox"
],
package_data={
"client": [
"certs/corelight.pem"
]
},
install_requires=[
# 2.17.{1,2} have a problem with urrllib3:
# https://github.com/requests/requests/issues/4104
"requests>=2.9.1,!=2.17.1,!=2.17.2",
],
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only"
],
)