forked from zeek/package-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (31 loc) · 1.16 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
import pathlib
from setuptools import setup
install_requires = ["gitpython", "semantic_version", "btest"]
def version():
return pathlib.Path("VERSION").read_text().replace("-", ".dev", 1).strip()
def long_description():
return pathlib.Path("README").read_text()
setup(
name="zkg",
version=version(),
description="The Zeek Package Manager",
long_description=long_description(),
license="University of Illinois/NCSA Open Source License",
keywords="zeek zeekctl zeekcontrol package manager scripts plugins security",
maintainer="The Zeek Project",
maintainer_email="[email protected]",
url="https://github.com/zeek/package-manager",
scripts=["zkg"],
packages=["zeekpkg"],
install_requires=install_requires,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: University of Illinois/NCSA Open Source License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Utilities",
],
)