flowproof 0.0.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.
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: flowproof
3
+ Version: 0.0.1
4
+ Summary: AI-native E2E testing for the apps Selenium can't reach. Placeholder release — see github.com/automators-com/flowproof
5
+ Project-URL: Homepage, https://github.com/automators-com/flowproof
6
+ Project-URL: Repository, https://github.com/automators-com/flowproof
7
+ Author-email: Automators <hello@automators.com>
8
+ License-Expression: Apache-2.0
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Software Development :: Testing
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+
16
+ # flowproof
17
+
18
+ AI-native E2E testing for the apps Selenium can't reach.
19
+
20
+ FlowProof is an open-source, AI-native end-to-end testing framework for
21
+ enterprise Windows apps (SAP GUI, Oracle, Citrix, legacy desktop). AI authors
22
+ and heals tests; a deterministic engine replays them in CI.
23
+
24
+ **This is a placeholder release** reserving the package name. Follow
25
+ development at [github.com/automators-com/flowproof](https://github.com/automators-com/flowproof).
@@ -0,0 +1,10 @@
1
+ # flowproof
2
+
3
+ AI-native E2E testing for the apps Selenium can't reach.
4
+
5
+ FlowProof is an open-source, AI-native end-to-end testing framework for
6
+ enterprise Windows apps (SAP GUI, Oracle, Citrix, legacy desktop). AI authors
7
+ and heals tests; a deterministic engine replays them in CI.
8
+
9
+ **This is a placeholder release** reserving the package name. Follow
10
+ development at [github.com/automators-com/flowproof](https://github.com/automators-com/flowproof).
@@ -0,0 +1,10 @@
1
+ """FlowProof — AI-native E2E testing for the apps Selenium can't reach.
2
+
3
+ Open-source AI-native E2E testing framework for enterprise Windows apps
4
+ (SAP GUI, Oracle, Citrix, legacy desktop). AI authors and heals tests;
5
+ a deterministic engine replays them in CI.
6
+
7
+ This is a placeholder release. See https://github.com/automators-com/flowproof
8
+ """
9
+
10
+ __version__ = "0.0.1"
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "flowproof"
7
+ version = "0.0.1"
8
+ description = "AI-native E2E testing for the apps Selenium can't reach. Placeholder release — see github.com/automators-com/flowproof"
9
+ readme = "README.md"
10
+ license = "Apache-2.0"
11
+ requires-python = ">=3.9"
12
+ authors = [
13
+ { name = "Automators", email = "hello@automators.com" },
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Intended Audience :: Developers",
18
+ "Programming Language :: Python :: 3",
19
+ "Topic :: Software Development :: Testing",
20
+ ]
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/automators-com/flowproof"
24
+ Repository = "https://github.com/automators-com/flowproof"
25
+
26
+ [tool.hatch.build.targets.wheel]
27
+ packages = ["flowproof"]