-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
21 additions
and
15 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
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 |
---|---|---|
@@ -1,22 +1,24 @@ | ||
"""The classic setuptools python file.""" | ||
|
||
from setuptools import setup | ||
import r2ai | ||
|
||
with open("README.md") as fd: | ||
with open("README.md", encoding = "utf-8") as fd: | ||
readme = fd.read() | ||
|
||
setup( | ||
name='r2ai', | ||
version=r2ai.VERSION, | ||
description="Applying language models on radare2 for reverse engineering and fun purposes", | ||
long_description=readme, | ||
long_description_content_type="text/markdown", | ||
author="pancake", | ||
author_email="[email protected]", | ||
url="https://www.radare.org/", | ||
packages=[ | ||
name ='r2ai', | ||
version = r2ai.VERSION, | ||
description = "Applying language models on radare2 for reverse engineering and fun purposes", | ||
long_description = readme, | ||
long_description_content_type = "text/markdown", | ||
author = "pancake", | ||
author_email = "[email protected]", | ||
url = "https://www.radare.org/", | ||
packages = [ | ||
'r2ai', | ||
], | ||
install_requires=[ | ||
install_requires = [ | ||
'rich', | ||
'r2pipe', | ||
'inquirer', | ||
|
@@ -33,5 +35,5 @@ | |
'console_scripts': [ | ||
'r2ai = r2ai.main:main' | ||
] | ||
}, | ||
} | ||
) |