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

Setup workflow #50

Merged
merged 2 commits into from
Sep 14, 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
7 changes: 7 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[bumpversion]
current_version = 0.1.0
commit = True
tag = True

[bumpversion:file:setup.py]
[bumpversion:file:nox/__init__.py]
2 changes: 0 additions & 2 deletions nox/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
from nox.commands import hash_commands
from nox.commands import init_command
from nox.commands import jwt_commands
from nox.commands import kafka_commands
from nox.commands import net_commands
from nox.commands import redis_commands
from nox.commands import s3_commands
Expand Down Expand Up @@ -40,7 +39,6 @@ def cli():
cli.add_command(env_commands.env)
cli.add_command(datetime_commands.datetime)
cli.add_command(redis_commands.redis)
cli.add_command(kafka_commands.kafka)

if __name__ == '__main__':
cli()
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@

setup(
name='nox-cli',
version='0.1.0',
use_scm_version=True,
setup_requires=['setuptools-scm'],
description='A powerful CLI tool for various automation tasks.',
author='Adib Grouz',
author_email='[email protected]',
url='https://github.com/Adi3g/nox-cli',
packages=find_packages(),
include_package_data=True,
install_requires=[
Expand Down
Loading