|
1 | | -[tool.poetry] |
2 | | -name = "torbot" |
3 | | -version = "4.0.0" |
4 | | -description = "OSINT for the dark web" |
5 | | -authors = ["Akeem King <akeemtlking@gmail.com>", "PS Narayanan <thepsnarayanan@gmail.com>"] |
6 | | -license = "GNU GPL" |
7 | | -include = [".env"] |
8 | | - |
9 | | -[tool.poetry.dependencies] |
10 | | -python = ">=3.9,<=3.11.4" |
11 | | -altgraph = "0.17.2" |
12 | | -beautifulsoup4 = "4.11.1" |
13 | | -certifi = "2023.7.22" |
14 | | -charset-normalizer = "2.0.12" |
15 | | -decorator = "5.1.1" |
16 | | -idna = "3.3" |
17 | | -igraph = "0.10.6" |
18 | | -joblib = "1.2.0" |
19 | | -macholib = "1.16" |
20 | | -progress = "1.6" |
21 | | -pyinstaller = "5.13.1" |
22 | | -pyinstaller-hooks-contrib = "2022.7" |
23 | | -PySocks = "1.7.1" |
24 | | -python-dotenv = "0.20.0" |
25 | | -scikit-learn = "1.3.0" |
26 | | -scipy = "1.10.0" |
27 | | -six = "1.16.0" |
28 | | -sklearn = "0.0" |
29 | | -soupsieve = "2.3.2.post1" |
30 | | -termcolor = "1.1.0" |
31 | | -texttable = "1.6.4" |
32 | | -threadpoolctl = "3.1.0" |
33 | | -urllib3 = "1.26.18" |
34 | | -validators = "0.20.0" |
35 | | -treelib = "^1.6.1" |
36 | | -numpy = "1.24.4" |
37 | | -unipath = "^1.1" |
38 | | -httpx = {extras = ["socks"], version = "^0.25.0"} |
39 | | -tabulate = "^0.9.0" |
40 | | -phonenumbers = "^8.13.22" |
41 | | -pytest = "^7.4.2" |
42 | | -yattag = "^1.15.1" |
43 | | -toml = "^0.10.2" |
44 | | - |
45 | | -[tool.poetry.dev-dependencies] |
46 | | - |
47 | 1 | [build-system] |
48 | | -requires = ["poetry-core>=1.0.0"] |
49 | | -build-backend = "poetry.core.masonry.api" |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "torbot" |
| 7 | +version = "4.1.0" |
| 8 | +authors = [ |
| 9 | + { name="Akeem King", email="akeemtlking@gmail.com" }, |
| 10 | + { name="PS Narayanan", email="thepsnarayanan@gmail.com" }, |
| 11 | +] |
| 12 | +description = "TorBot is an OSINT tool for the dark web." |
| 13 | +readme = "README.md" |
| 14 | +requires-python = ">=3.7" |
| 15 | +classifiers = [ |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
| 18 | + "Operating System :: OS Independent", |
| 19 | +] |
| 20 | +dependencies = [ |
| 21 | + "altgraph==0.17.2", |
| 22 | + "beautifulsoup4==4.11.1", |
| 23 | + "certifi==2024.7.4", |
| 24 | + "charset-normalizer==2.0.12", |
| 25 | + "decorator==5.1.1", |
| 26 | + "idna==3.7", |
| 27 | + "igraph==0.10.6", |
| 28 | + "joblib==1.2.0", |
| 29 | + "macholib==1.16", |
| 30 | + "progress==1.6", |
| 31 | + "pyinstaller==5.13.1", |
| 32 | + "pyinstaller-hooks-contrib==2022.7", |
| 33 | + "PySocks==1.7.1", |
| 34 | + "python-dotenv==0.20.0", |
| 35 | + "scikit-learn==1.3.0", |
| 36 | + "scipy==1.10.0", |
| 37 | + "six==1.16.0", |
| 38 | + "sklearn==0.0", |
| 39 | + "soupsieve==2.3.2.post1", |
| 40 | + "termcolor==1.1.0", |
| 41 | + "texttable==1.6.4", |
| 42 | + "threadpoolctl==3.1.0", |
| 43 | + "urllib3==1.26.19", |
| 44 | + "validators==0.20.0", |
| 45 | + "treelib==1.6.1", |
| 46 | + "numpy==1.24.4", |
| 47 | + "unipath==1.1", |
| 48 | + "httpx[socks]==0.25.0", |
| 49 | + "tabulate==0.9.0", |
| 50 | + "phonenumbers==8.13.22", |
| 51 | + "pytest==7.4.2", |
| 52 | + "yattag==1.15.1", |
| 53 | + "toml==0.10.2", |
| 54 | +] |
0 commit comments