-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from PhonePe/release_and_packaging
Added poetry and bump2version for release and packaging
- Loading branch information
Showing
4 changed files
with
108 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[bumpversion] | ||
current_version = 0.1.0 | ||
commit = True | ||
tag = True | ||
|
||
[bumpversion:file:pyproject.toml] | ||
search = version = "{current_version}" | ||
replace = version = "{new_version}" | ||
|
||
[bumpversion:file:mantis/__init__.py] | ||
search = __version__ = "{current_version}" | ||
replace = __version__ = "{new_version}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[tool.poetry] | ||
name = "mantis" | ||
version = "0.1.0" | ||
description = "Mantis is a security framework that automates the workflow of discovery, reconnaissance, and vulnerability scanning." | ||
authors = ["Prateek Thakare <[email protected]>", | ||
"Praveen Kanniah <[email protected]>"] | ||
maintainers = ["Prateek Thakare <[email protected]>", | ||
"Praveen Kanniah <[email protected]>"] | ||
license = "apache2" | ||
repository = "https://github.com/PhonePe/mantis" | ||
keywords = ["asset discovery", "recon", "recon automation", "osint", "threat intelligence", "recon framework"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Internal Security Teams", | ||
"Intended Audience :: Bug Bounty Hunters", | ||
"Topic :: Application Security :: Recon Framework" | ||
] | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
decorator = "5.1.1" | ||
motor = "3.0.0" | ||
netaddr = "0.8.0" | ||
pydantic = "1.10.2" | ||
pymongo = "4.2.0" | ||
PyYAML = "6.0" | ||
typing_extensions = "4.4.0" | ||
validators = "0.20.0" | ||
tldextract = "3.4.0" | ||
pytz = "2022.6" | ||
ray = {version = "2.8.0", extras = ["default"]} | ||
retry = "0.9.2" | ||
slack-sdk = "3.21.3" | ||
rocketry = "2.5.1" | ||
boto3 = "1.28.20" | ||
tqdm = "4.66.1" | ||
cloudflare = "*" | ||
bump2version = "^1.0.1" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |