bachs 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.
- bachs-0.0.1/LICENSE +21 -0
- bachs-0.0.1/PKG-INFO +35 -0
- bachs-0.0.1/README.md +15 -0
- bachs-0.0.1/bachs/__init__.py +7 -0
- bachs-0.0.1/pyproject.toml +29 -0
bachs-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Bachs
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
bachs-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: bachs
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official Bachs SDK for Python. Coming soon.
|
|
5
|
+
Project-URL: Homepage, https://bachs.io
|
|
6
|
+
Project-URL: Documentation, https://docs.bachs.io
|
|
7
|
+
Project-URL: Source, https://github.com/bachsdev/bachs-python
|
|
8
|
+
Author-email: Bachs <hello@bachs.io>
|
|
9
|
+
License: MIT
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: api,bachs,billing,payments,sdk,subscriptions
|
|
12
|
+
Classifier: Development Status :: 1 - Planning
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Topic :: Office/Business :: Financial
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
|
+
Requires-Python: >=3.8
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
|
|
21
|
+
# Bachs
|
|
22
|
+
|
|
23
|
+
Official Bachs SDK for JavaScript and TypeScript.
|
|
24
|
+
|
|
25
|
+
Bachs is payments and billing infrastructure for internet businesses: accept
|
|
26
|
+
payments globally, run subscriptions, and settle in your own currency.
|
|
27
|
+
|
|
28
|
+
> **This package is a placeholder reserving the name. The full SDK is on the way.**
|
|
29
|
+
|
|
30
|
+
- Documentation: https://docs.bachs.io
|
|
31
|
+
- Website: https://bachs.io
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
MIT
|
bachs-0.0.1/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Bachs
|
|
2
|
+
|
|
3
|
+
Official Bachs SDK for JavaScript and TypeScript.
|
|
4
|
+
|
|
5
|
+
Bachs is payments and billing infrastructure for internet businesses: accept
|
|
6
|
+
payments globally, run subscriptions, and settle in your own currency.
|
|
7
|
+
|
|
8
|
+
> **This package is a placeholder reserving the name. The full SDK is on the way.**
|
|
9
|
+
|
|
10
|
+
- Documentation: https://docs.bachs.io
|
|
11
|
+
- Website: https://bachs.io
|
|
12
|
+
|
|
13
|
+
## License
|
|
14
|
+
|
|
15
|
+
MIT
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "bachs"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Official Bachs SDK for Python. Coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Bachs", email = "hello@bachs.io" }]
|
|
13
|
+
keywords = ["bachs", "payments", "billing", "subscriptions", "sdk", "api"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Topic :: Office/Business :: Financial",
|
|
20
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://bachs.io"
|
|
25
|
+
Documentation = "https://docs.bachs.io"
|
|
26
|
+
Source = "https://github.com/bachsdev/bachs-python"
|
|
27
|
+
|
|
28
|
+
[tool.hatch.build.targets.wheel]
|
|
29
|
+
packages = ["bachs"]
|