reait 1.0.1__tar.gz → 1.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: reait
3
- Version: 1.0.1
3
+ Version: 1.1.1
4
+ Summary: RevEng.AI Toolkit and Python API
4
5
  Home-page: https://github.com/RevEng-AI/reait
5
6
  Author: James Patrick-Evans
6
7
  Author-email: James Patrick-Evans <james@reveng.ai>
@@ -689,18 +690,22 @@ Platform: Cross Platform
689
690
  Classifier: Programming Language :: Python :: 3
690
691
  Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
691
692
  Classifier: Operating System :: OS Independent
692
- Requires-Python: >=3.7
693
+ Requires-Python: >=3.10
693
694
  Description-Content-Type: text/markdown
694
695
  License-File: LICENSE
695
- Requires-Dist: argparse
696
- Requires-Dist: requests
697
- Requires-Dist: rich
698
- Requires-Dist: tomli
699
- Requires-Dist: pandas
700
- Requires-Dist: numpy
701
- Requires-Dist: scipy
702
- Requires-Dist: scikit-learn
703
- Requires-Dist: lief
696
+ Requires-Dist: lief==0.16.4
697
+ Requires-Dist: numpy==2.2.4
698
+ Requires-Dist: pandas==2.2.3
699
+ Requires-Dist: Requests==2.32.3
700
+ Requires-Dist: rich==13.9.4
701
+ Requires-Dist: scikit_learn==1.6.1
702
+ Requires-Dist: scipy==1.15.2
703
+ Requires-Dist: setuptools==65.5.0
704
+ Requires-Dist: tomli==2.2.1
705
+ Dynamic: author
706
+ Dynamic: home-page
707
+ Dynamic: license-file
708
+ Dynamic: platform
704
709
 
705
710
  # reait
706
711
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "reait"
7
- version = "1.0.1"
7
+ version = "1.1.1"
8
8
  readme = "README.md"
9
9
  classifiers=[
10
10
  "Programming Language :: Python :: 3",
@@ -13,7 +13,8 @@ classifiers=[
13
13
  ]
14
14
  dynamic = ["dependencies"]
15
15
  keywords = ["reverse", "engineering", "reveng.ai", "reveng", "machine", "learning", "binary", "analysis", "ml", "ai", "vector", "embedding"]
16
- requires-python = ">=3.7"
16
+ description = "RevEng.AI Toolkit and Python API"
17
+ requires-python = ">=3.10"
17
18
  license = {file = "LICENSE"}
18
19
  authors = [
19
20
  {name = "James Patrick-Evans", email = "james@reveng.ai"},
@@ -0,0 +1,9 @@
1
+ lief==0.16.4
2
+ numpy==2.2.4
3
+ pandas==2.2.3
4
+ Requests==2.32.3
5
+ rich==13.9.4
6
+ scikit_learn==1.6.1
7
+ scipy==1.15.2
8
+ setuptools==65.5.0
9
+ tomli==2.2.1
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env python3
2
- # -*- coding: utf-8 -*-
3
2
  from setuptools import setup, find_packages
4
3
 
5
4
 
@@ -18,7 +17,12 @@ setup(
18
17
  author="James Patrick-Evans",
19
18
  author_email="james@reveng.ai",
20
19
  platforms="Cross Platform",
21
- packages=find_packages(where="src", exclude=["tests",]),
20
+ packages=find_packages(
21
+ where="src",
22
+ exclude=[
23
+ "tests",
24
+ ],
25
+ ),
22
26
  package_dir={
23
27
  "": "src",
24
28
  },
@@ -1,4 +1,3 @@
1
- # -*- coding: utf-8 -*-
2
1
  from reait import api
3
2
 
4
3
  api.parse_config()