Skip to content

Commit 4c95201

Browse files
committed
fix: Change package name to gtfobins-cli to avoid PyPI naming conflict
- Changed package name from 'gtfobins' to 'gtfobins-cli' in all configuration files - Updated setup.py, pyproject.toml, setup.cfg with new package name - Updated README.md badges and installation instructions - Removed PYPI_SETUP.md as requested - Package will now be published as 'gtfobins-cli' on PyPI - Command 'gtfo' remains unchanged for end users
1 parent edcbb8a commit 4c95201

File tree

5 files changed

+6
-142
lines changed

5 files changed

+6
-142
lines changed

PYPI_SETUP.md

Lines changed: 0 additions & 136 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# GTFOBins CLI
22

3-
[![PyPI version](https://badge.fury.io/py/gtfobins.svg)](https://badge.fury.io/py/gtfobins)
4-
[![Python](https://img.shields.io/pypi/pyversions/gtfobins.svg)](https://pypi.org/project/gtfobins/)
3+
[![PyPI version](https://badge.fury.io/py/gtfobins-cli.svg)](https://badge.fury.io/py/gtfobins-cli)
4+
[![Python](https://img.shields.io/pypi/pyversions/gtfobins-cli.svg)](https://pypi.org/project/gtfobins-cli/)
55
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
66
[![Build and Publish](https://github.com/t0thkr1s/gtfo/actions/workflows/publish.yml/badge.svg)](https://github.com/t0thkr1s/gtfo/actions/workflows/publish.yml)
77

@@ -22,7 +22,7 @@
2222
### From PyPI (Recommended)
2323

2424
```bash
25-
pip install gtfobins
25+
pip install gtfobins-cli
2626
```
2727

2828
### From Source

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "gtfobins"
6+
name = "gtfobins-cli"
77
version = "1.0.0"
88
authors = [
99
{name = "t0thkr1s", email = "[email protected]"},

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
name = gtfobins
2+
name = gtfobins-cli
33
version = 1.0.0
44
author = t0thkr1s
55
author_email = [email protected]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
long_description = (this_directory / "README.md").read_text()
66

77
setup(
8-
name='gtfobins',
8+
name='gtfobins-cli',
99
version='1.0.0',
1010
url='https://github.com/t0thkr1s/gtfo',
1111
author='t0thkr1s',

0 commit comments

Comments
 (0)