Skip to content

Commit

Permalink
Rebuild project
Browse files Browse the repository at this point in the history
  • Loading branch information
aaarghhh committed Sep 29, 2023
1 parent 83822d3 commit 08e59f2
Show file tree
Hide file tree
Showing 12 changed files with 1,144 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.idea/
venv/
dist/
*23*/
*egg-info/

*_ff.*
*.session
.env
.env.bk
13 changes: 13 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
beautifulsoup4==4.12.2
certifi==2023.7.22
charset-normalizer==3.2.0
colorama==0.4.6
idna==3.4
pyaes>=1.6.1
pyasn1>=0.5.0
python-dotenv>=1.0.0
requests==2.31.0
rsa>=4.9
soupsieve>=2.5
Telethon==1.30.3
urllib3>=2.0.5
36 changes: 36 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
from setuptools import (
setup,
find_packages,
)

setup(
name="atop",
version="0.1.8-1",
author="Aaarghhh",
author_email="giacomo@udontneed.it",
packages=["atop", "atop.modules"],
package_dir={'':'src'},
include_package_data=True,
entry_points={"console_scripts": ["a-ton-of-privacy = atop.atop:run"]},
url="https://github.com/aaarghhh/a_TON_of_privacy",
license="MIT",
description='"A TON of Privacy" formally called ATOP ... is a tool for conducting OSINT investigations on TON NFTs.',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"beautifulsoup4==4.12.2",
"certifi==2023.7.22",
"charset-normalizer==3.2.0",
"colorama==0.4.6",
"idna==3.4",
"pyaes>=1.6.1",
"pyasn1>=0.5.0",
"python-dotenv>=1.0.0",
"requests==2.31.0",
"rsa>=4.9",
"soupsieve>=2.5",
"Telethon==1.30.3",
"urllib3>=2.0.5"
],
zip_safe=False,
)
Empty file added src/__init__.py
Empty file.
Empty file added src/atop/__init__.py
Empty file.
Loading

0 comments on commit 08e59f2

Please sign in to comment.