roborama 0.1.0.dev0__tar.gz → 0.1.0.dev1__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.
Files changed (21) hide show
  1. {roborama-0.1.0.dev0/src/roborama.egg-info → roborama-0.1.0.dev1}/PKG-INFO +2 -3
  2. {roborama-0.1.0.dev0 → roborama-0.1.0.dev1}/pyproject.toml +21 -5
  3. {roborama-0.1.0.dev0/src/core → roborama-0.1.0.dev1/src/roborama}/__main__.py +1 -1
  4. roborama-0.1.0.dev1/src/roborama/core/__init__.py +0 -0
  5. roborama-0.1.0.dev1/src/roborama/studio/__init__.py +0 -0
  6. roborama-0.1.0.dev1/src/roborama/windows/__init__.py +0 -0
  7. {roborama-0.1.0.dev0 → roborama-0.1.0.dev1/src/roborama.egg-info}/PKG-INFO +2 -3
  8. roborama-0.1.0.dev1/src/roborama.egg-info/SOURCES.txt +16 -0
  9. roborama-0.1.0.dev1/src/roborama.egg-info/entry_points.txt +3 -0
  10. {roborama-0.1.0.dev0 → roborama-0.1.0.dev1}/src/roborama.egg-info/requires.txt +0 -3
  11. roborama-0.1.0.dev1/src/roborama.egg-info/top_level.txt +1 -0
  12. roborama-0.1.0.dev0/src/roborama.egg-info/SOURCES.txt +0 -13
  13. roborama-0.1.0.dev0/src/roborama.egg-info/entry_points.txt +0 -3
  14. roborama-0.1.0.dev0/src/roborama.egg-info/top_level.txt +0 -2
  15. {roborama-0.1.0.dev0 → roborama-0.1.0.dev1}/LICENSE +0 -0
  16. {roborama-0.1.0.dev0 → roborama-0.1.0.dev1}/README.md +0 -0
  17. {roborama-0.1.0.dev0 → roborama-0.1.0.dev1}/setup.cfg +0 -0
  18. {roborama-0.1.0.dev0/src/browser → roborama-0.1.0.dev1/src/roborama}/__init__.py +0 -0
  19. {roborama-0.1.0.dev0/src/core → roborama-0.1.0.dev1/src/roborama/browser}/__init__.py +0 -0
  20. {roborama-0.1.0.dev0/src → roborama-0.1.0.dev1/src/roborama}/core/cli.py +0 -0
  21. {roborama-0.1.0.dev0 → roborama-0.1.0.dev1}/src/roborama.egg-info/dependency_links.txt +0 -0
@@ -1,18 +1,18 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: roborama
3
- Version: 0.1.0.dev0
3
+ Version: 0.1.0.dev1
4
4
  Summary: Frictionless robotic process automation engine for everyone.
5
5
  Author: seto
6
6
  License: AGPL-3.0-or-later
7
7
  Project-URL: Source, https://github.com/seto/roborama
8
8
  Classifier: Development Status :: 1 - Planning
9
9
  Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.11
10
11
  Classifier: Programming Language :: Python :: 3.12
11
12
  Classifier: Programming Language :: Python :: 3.13
12
13
  Classifier: Programming Language :: Python :: 3.14
13
14
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
14
15
  Classifier: Environment :: Console
15
- Classifier: Environment :: Console
16
16
  Classifier: Environment :: MacOS X
17
17
  Classifier: Environment :: Win32 (MS Windows)
18
18
  Classifier: Environment :: X11 Applications
@@ -31,7 +31,6 @@ License-File: LICENSE
31
31
  Provides-Extra: browser
32
32
  Requires-Dist: playwright~=1.60; extra == "browser"
33
33
  Provides-Extra: windows
34
- Requires-Dist: pywin32>=312; platform_system == "Windows" and extra == "windows"
35
34
  Provides-Extra: dev
36
35
  Requires-Dist: black~=26.5; extra == "dev"
37
36
  Requires-Dist: build~=1.5; extra == "dev"
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "roborama"
7
- version = "0.1.0.dev0"
7
+ version = "0.1.0.dev1"
8
8
  description = "Frictionless robotic process automation engine for everyone."
9
9
  readme = "README.md"
10
10
  authors = [{ name="seto" }]
@@ -13,12 +13,12 @@ requires-python = ">=3.12"
13
13
  classifiers = [
14
14
  "Development Status :: 1 - Planning",
15
15
  "Programming Language :: Python :: 3",
16
+ "Programming Language :: Python :: 3.11",
16
17
  "Programming Language :: Python :: 3.12",
17
18
  "Programming Language :: Python :: 3.13",
18
19
  "Programming Language :: Python :: 3.14",
19
20
  "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
20
21
  "Environment :: Console",
21
- "Environment :: Console",
22
22
  "Environment :: MacOS X",
23
23
  "Environment :: Win32 (MS Windows)",
24
24
  "Environment :: X11 Applications",
@@ -39,7 +39,23 @@ browser = [
39
39
  "playwright~=1.60",
40
40
  ]
41
41
  windows = [
42
- "pywin32>=312; platform_system == 'Windows'",
42
+ # Empty as the Windows backend is still undecided between two paths:
43
+ #
44
+ # 1. ctypes (stdlib) for raw Win32 APIs (FindWindow, EnumChildWindows,
45
+ # SendMessage, SendInput, ...) and a custom C++ DLL for UIA/COM,
46
+ # distributed as package data, not as a pip dependency. Pros: zero
47
+ # added runtime dependencies, full control over the COM/UIA layer.
48
+ # Cons: requires building and shipping platform-specific binaries
49
+ # (x64/x86/arm64) and maintaining COM marshaling code ourselves.
50
+ #
51
+ # 2. pywin32: mature, battle-tested, covers both raw Win32 and COM/UIA
52
+ # out of the box. Pros: faster to ship, no native build pipeline
53
+ # needed. Cons: reintroduces a dependency that wraps something we
54
+ # could write ourselves (against the project's "no wrapper
55
+ # dependencies" principle), and ties us to its release cadence
56
+ # and packaging quirks.
57
+ #
58
+ # Decision pending until the Windows phase (post-MVP) starts.
43
59
  ]
44
60
  dev = [
45
61
  "black~=26.5",
@@ -55,8 +71,8 @@ dev = [
55
71
  "Source" = "https://github.com/seto/roborama"
56
72
 
57
73
  [project.scripts]
58
- roborama = "core.cli:main"
59
- rbrm = "core.cli:main"
74
+ roborama = "roborama.core.cli:main"
75
+ rbrm = "roborama.core.cli:main"
60
76
 
61
77
  [tool.setuptools.packages.find]
62
78
  where = ["src"]
@@ -15,7 +15,7 @@
15
15
  # You should have received a copy of the GNU Affero General Public License
16
16
  # along with Roborama. If not, see <https://www.gnu.org/licenses/>.
17
17
 
18
- from .cli import main
18
+ from .core.cli import main
19
19
 
20
20
  if __name__ == "__main__":
21
21
  main()
File without changes
File without changes
File without changes
@@ -1,18 +1,18 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: roborama
3
- Version: 0.1.0.dev0
3
+ Version: 0.1.0.dev1
4
4
  Summary: Frictionless robotic process automation engine for everyone.
5
5
  Author: seto
6
6
  License: AGPL-3.0-or-later
7
7
  Project-URL: Source, https://github.com/seto/roborama
8
8
  Classifier: Development Status :: 1 - Planning
9
9
  Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.11
10
11
  Classifier: Programming Language :: Python :: 3.12
11
12
  Classifier: Programming Language :: Python :: 3.13
12
13
  Classifier: Programming Language :: Python :: 3.14
13
14
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
14
15
  Classifier: Environment :: Console
15
- Classifier: Environment :: Console
16
16
  Classifier: Environment :: MacOS X
17
17
  Classifier: Environment :: Win32 (MS Windows)
18
18
  Classifier: Environment :: X11 Applications
@@ -31,7 +31,6 @@ License-File: LICENSE
31
31
  Provides-Extra: browser
32
32
  Requires-Dist: playwright~=1.60; extra == "browser"
33
33
  Provides-Extra: windows
34
- Requires-Dist: pywin32>=312; platform_system == "Windows" and extra == "windows"
35
34
  Provides-Extra: dev
36
35
  Requires-Dist: black~=26.5; extra == "dev"
37
36
  Requires-Dist: build~=1.5; extra == "dev"
@@ -0,0 +1,16 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/roborama/__init__.py
5
+ src/roborama/__main__.py
6
+ src/roborama.egg-info/PKG-INFO
7
+ src/roborama.egg-info/SOURCES.txt
8
+ src/roborama.egg-info/dependency_links.txt
9
+ src/roborama.egg-info/entry_points.txt
10
+ src/roborama.egg-info/requires.txt
11
+ src/roborama.egg-info/top_level.txt
12
+ src/roborama/browser/__init__.py
13
+ src/roborama/core/__init__.py
14
+ src/roborama/core/cli.py
15
+ src/roborama/studio/__init__.py
16
+ src/roborama/windows/__init__.py
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ rbrm = roborama.core.cli:main
3
+ roborama = roborama.core.cli:main
@@ -12,6 +12,3 @@ pytest-cov~=7.1
12
12
  twine~=6.2
13
13
 
14
14
  [windows]
15
-
16
- [windows:platform_system == "Windows"]
17
- pywin32>=312
@@ -0,0 +1 @@
1
+ roborama
@@ -1,13 +0,0 @@
1
- LICENSE
2
- README.md
3
- pyproject.toml
4
- src/browser/__init__.py
5
- src/core/__init__.py
6
- src/core/__main__.py
7
- src/core/cli.py
8
- src/roborama.egg-info/PKG-INFO
9
- src/roborama.egg-info/SOURCES.txt
10
- src/roborama.egg-info/dependency_links.txt
11
- src/roborama.egg-info/entry_points.txt
12
- src/roborama.egg-info/requires.txt
13
- src/roborama.egg-info/top_level.txt
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- rbrm = core.cli:main
3
- roborama = core.cli:main
@@ -1,2 +0,0 @@
1
- browser
2
- core
File without changes
File without changes
File without changes