Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move project configuration to pyproject.toml #40

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest websocket-client
pip install -e '.[dev]'
- name: Run unit tests
run: pytest

Expand Down
47 changes: 47 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[project]
name = "zeek-client"
dynamic = ["version"]
description = "A CLI for Zeek's Management Framework"
dependencies = [
"websocket-client>=1.8.0",
]
readme = "README.md"
requires-python = ">= 3.8"
license = {text = "3-clause BSD License"}

classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Utilities",
]

keywords=[
"zeek",
"management",
"client",
"cluster",
]

[[project.maintainers]]
name = "The Zeek Project"
email = "[email protected]"

[project.urls]
Repository = "https://github.com/zeek/zeek-client"

[project.optional-dependencies]
dev = [
"pytest>=8.1.1",
]

[build-system]
requires = ["setuptools"]

[tool.setuptools]
packages = ["zeekclient"]
script-files = ["zeek-client"]
28 changes: 0 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,39 +1,11 @@
from setuptools import setup


def get_readme():
with open("README.md", encoding="utf-8") as readme:
return readme.read()


def get_version():
with open("VERSION", encoding="utf-8") as version:
return version.read().replace("-", ".dev", 1).strip()


setup(
name="zeek-client",
version=get_version(),
description="A CLI for Zeek's Management Framework",
long_description=get_readme(),
long_description_content_type="text/markdown",
license="3-clause BSD License",
keywords="zeek management client cluster",
maintainer="The Zeek Project",
maintainer_email="[email protected]",
url="https://github.com/zeek/zeek-client",
scripts=["zeek-client"],
packages=["zeekclient"],
install_requires=["websocket-client"],
python_requires=">=3.7.0",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Utilities",
],
)
Loading