reait 1.0.0__tar.gz → 1.1.0__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.0
3
+ Version: 1.1.0
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: requests
696
- Requires-Dist: rich
697
- Requires-Dist: argparse
698
- Requires-Dist: tomli
699
- Requires-Dist: pandas
700
- Requires-Dist: numpy
701
- Requires-Dist: scipy
702
- Requires-Dist: lief
703
- Requires-Dist: scikit-learn
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,26 +4,17 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "reait"
7
- version = "1.0.0"
7
+ version = "1.1.0"
8
8
  readme = "README.md"
9
9
  classifiers=[
10
10
  "Programming Language :: Python :: 3",
11
11
  "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
12
12
  "Operating System :: OS Independent"
13
13
  ]
14
- dependencies = [
15
- "requests",
16
- "rich",
17
- "argparse",
18
- "tomli",
19
- "pandas",
20
- "numpy",
21
- "scipy",
22
- "lief",
23
- "scikit-learn",
24
- ]
14
+ dynamic = ["dependencies"]
25
15
  keywords = ["reverse", "engineering", "reveng.ai", "reveng", "machine", "learning", "binary", "analysis", "ml", "ai", "vector", "embedding"]
26
- requires-python = ">=3.7"
16
+ description = "RevEng.AI Toolkit and Python API"
17
+ requires-python = ">=3.10"
27
18
  license = {file = "LICENSE"}
28
19
  authors = [
29
20
  {name = "James Patrick-Evans", email = "james@reveng.ai"},
@@ -32,6 +23,9 @@ maintainers = [
32
23
  {name = "James Patrick-Evans", email = "james@reveng.ai"},
33
24
  ]
34
25
 
26
+ [tool.setuptools.dynamic]
27
+ dependencies = {file = ["requirements.txt",]}
28
+
35
29
  [project.urls]
36
30
  "Homepage" = "https://github.com/RevEng-AI/reait"
37
31
  "Bug Tracker" = "https://github.com/RevEng-AI/reait/issues"
@@ -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()