carbonkivy 0.0.1.dev0__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.
- carbonkivy-0.0.1.dev0/LICENSE +21 -0
- carbonkivy-0.0.1.dev0/PKG-INFO +129 -0
- carbonkivy-0.0.1.dev0/README.md +85 -0
- carbonkivy-0.0.1.dev0/carbonkivy/__init__.py +11 -0
- carbonkivy-0.0.1.dev0/carbonkivy/app.py +35 -0
- carbonkivy-0.0.1.dev0/carbonkivy/config.py +10 -0
- carbonkivy-0.0.1.dev0/carbonkivy/factory_registers.py +17 -0
- carbonkivy-0.0.1.dev0/carbonkivy.egg-info/PKG-INFO +129 -0
- carbonkivy-0.0.1.dev0/carbonkivy.egg-info/SOURCES.txt +12 -0
- carbonkivy-0.0.1.dev0/carbonkivy.egg-info/dependency_links.txt +1 -0
- carbonkivy-0.0.1.dev0/carbonkivy.egg-info/requires.txt +1 -0
- carbonkivy-0.0.1.dev0/carbonkivy.egg-info/top_level.txt +1 -0
- carbonkivy-0.0.1.dev0/pyproject.toml +50 -0
- carbonkivy-0.0.1.dev0/setup.cfg +4 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Kartavya Shukla
|
|
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.
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: carbonkivy
|
|
3
|
+
Version: 0.0.1.dev0
|
|
4
|
+
Summary: A library providing IBM's Carbon Design Components for Kivy.
|
|
5
|
+
Author-email: Kartavya Shukla <novfensec@protonmail.com>
|
|
6
|
+
Maintainer-email: Kartavya Shukla <novfensec@protonmail.com>
|
|
7
|
+
License: MIT License
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2025 Kartavya Shukla
|
|
10
|
+
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions:
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
|
|
29
|
+
Project-URL: Homepage, https://github.com/Novfensec/CarbonKivy
|
|
30
|
+
Project-URL: Repository, https://github.com/Novfensec/CarbonKivy
|
|
31
|
+
Project-URL: Bug Tracker, https://github.com/Novfensec/CarbonKivy/issues
|
|
32
|
+
Project-URL: Changelog, https://github.com/Novfensec/CarbonKivy/blob/master/CHANGELOG.md
|
|
33
|
+
Keywords: kivy,open source,carbon,design,carbondesignsystem,IBM,novfensec,carbonkivy,kv
|
|
34
|
+
Classifier: Development Status :: 4 - Beta
|
|
35
|
+
Classifier: Intended Audience :: Developers
|
|
36
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
37
|
+
Classifier: Topic :: Multimedia :: Graphics
|
|
38
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
39
|
+
Classifier: Programming Language :: Python :: 3
|
|
40
|
+
Requires-Python: >=3.10
|
|
41
|
+
Description-Content-Type: text/markdown
|
|
42
|
+
License-File: LICENSE
|
|
43
|
+
Requires-Dist: kivy>=2.0.0
|
|
44
|
+
|
|
45
|
+
# CarbonKivy
|
|
46
|
+
|
|
47
|
+
[](https://pypi.org/project/kvdeveloper)
|
|
48
|
+
[](#Installation)
|
|
49
|
+

|
|
50
|
+
[](https://github.com/psf/black)
|
|
51
|
+
|
|
52
|
+
[](https://github.com/CarbonKivy/CarbonKivy/stargazers)
|
|
53
|
+
[](https://github.com/CarbonKivy/CarbonKivy/network)
|
|
54
|
+
[](https://github.com/CarbonKivy/CarbonKivy)
|
|
55
|
+
[](https://github.com/CarbonKivy/CarbonKivy/issues)
|
|
56
|
+
|
|
57
|
+
<img src="https://raw.githubusercontent.com/CarbonKivy/CarbonKivy/master/assets/images/carbonkivy_logo256.png" height="180" align="right" padding="11"/>
|
|
58
|
+
|
|
59
|
+
CarbonKivy is a Python library that integrates IBM's [Carbon Design System](https://www.carbondesignsystem.com/) with the Kivy framework. It provides a modern, accessible, and user-friendly UI toolkit inspired by Carbon’s design principles, enabling developers to create consistent and visually appealing applications in Kivy.
|
|
60
|
+
|
|
61
|
+
## Community and Support
|
|
62
|
+
[](https://discord.gg/jxZ5xr3pUt)
|
|
63
|
+
[](https://reddit.com/r/CarbonKivy)
|
|
64
|
+
[](https://github.com/CarbonKivy/CarbonKivy/discussions)
|
|
65
|
+
|
|
66
|
+
[](https://youtube.com/@CarbonKivy)
|
|
67
|
+
|
|
68
|
+
Join the CarbonKivy community to get support, share your projects, and collaborate with other developers. Here are some ways you can connect with us:
|
|
69
|
+
|
|
70
|
+
- **Discord**: Join our [CarbonKivy Community Server](https://discord.gg/jxZ5xr3pUt).
|
|
71
|
+
- **Reddit - CarbonKivy**: Feel free to join our [Reddit Community](https://reddit.com/r/CarbonKivy).
|
|
72
|
+
- **GitHub Discussions**: Participate in discussions and ask questions in the [GitHub Discussions](https://github.com/CarbonKivy/CarbonKivy/discussions) section.
|
|
73
|
+
- **YouTube - CarbonKivy**: Follow us on YouTube [@CarbonKivy](https://youtube.com/@CarbonKivy) for updates and announcements.
|
|
74
|
+
|
|
75
|
+
[Documentation](#docs): Read the documentation.
|
|
76
|
+
|
|
77
|
+
If you encounter any issues or have questions, feel free to reach out to the community or submit an issue on GitHub.
|
|
78
|
+
|
|
79
|
+
## Features
|
|
80
|
+
- Comprehensive Carbon Design components tailored for Kivy.
|
|
81
|
+
- Modern and accessible UI elements.
|
|
82
|
+
- Customizable widgets for seamless integration.
|
|
83
|
+
- Consistent and adaptive design system.
|
|
84
|
+
|
|
85
|
+
## Installation
|
|
86
|
+
- Install CarbonKivy using pip:
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
pip install carbonkivy
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
- Install development version using pip `(requires git installation)`:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
pip install git+https://github.com/CarbonKivy/CarbonKivy.git@master
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
**OR**
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
pip install https://github.com/CarbonKivy/CarbonKivy/archive/master.zip
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## Requirements
|
|
105
|
+
- **Python**>=3.10
|
|
106
|
+
|
|
107
|
+
- kivy>=2.0.0 `(recommended kivy>=2.3.0)`
|
|
108
|
+
|
|
109
|
+
- pillow>=10.0.0
|
|
110
|
+
|
|
111
|
+
## Contributing
|
|
112
|
+
We welcome contributions from the community! If you're interested in contributing to KvDeveloper or its documentation, please read our [Contributing Guidelines](https://github.com/CarbonKivy/CarbonKivy/blob/master/CONTRIBUTING.md).
|
|
113
|
+
|
|
114
|
+
You can contribute by:
|
|
115
|
+
|
|
116
|
+
- Reporting bugs or suggesting features in the [Issues](https://github.com/CarbonKivy/CarbonKivy/issues) section.
|
|
117
|
+
- Submitting pull requests to improve the documentation or the KvDeveloper tool.
|
|
118
|
+
- Helping with translations or writing new guides.
|
|
119
|
+
|
|
120
|
+
For more detailed instructions, please visit our [Contributing](https://github.com/CarbonKivy/CarbonKivy/blob/master/CONTRIBUTING.md) page.
|
|
121
|
+
|
|
122
|
+
## Acknowledgements
|
|
123
|
+
[Kivy](https://github.com/kivy)
|
|
124
|
+
|
|
125
|
+
## License
|
|
126
|
+
CarbonKivy is released under the [MIT License](https://github.com/CarbonKivy/CarbonKivy/blob/master/LICENSE). You're free to use, modify, and distribute this software as long as you adhere to the terms of the license.
|
|
127
|
+
|
|
128
|
+
## Contact
|
|
129
|
+
For any inquiries, please contact us at [novfensec@protonmail.com](mailto:novfensec@protonmail.com).
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# CarbonKivy
|
|
2
|
+
|
|
3
|
+
[](https://pypi.org/project/kvdeveloper)
|
|
4
|
+
[](#Installation)
|
|
5
|
+

|
|
6
|
+
[](https://github.com/psf/black)
|
|
7
|
+
|
|
8
|
+
[](https://github.com/CarbonKivy/CarbonKivy/stargazers)
|
|
9
|
+
[](https://github.com/CarbonKivy/CarbonKivy/network)
|
|
10
|
+
[](https://github.com/CarbonKivy/CarbonKivy)
|
|
11
|
+
[](https://github.com/CarbonKivy/CarbonKivy/issues)
|
|
12
|
+
|
|
13
|
+
<img src="https://raw.githubusercontent.com/CarbonKivy/CarbonKivy/master/assets/images/carbonkivy_logo256.png" height="180" align="right" padding="11"/>
|
|
14
|
+
|
|
15
|
+
CarbonKivy is a Python library that integrates IBM's [Carbon Design System](https://www.carbondesignsystem.com/) with the Kivy framework. It provides a modern, accessible, and user-friendly UI toolkit inspired by Carbon’s design principles, enabling developers to create consistent and visually appealing applications in Kivy.
|
|
16
|
+
|
|
17
|
+
## Community and Support
|
|
18
|
+
[](https://discord.gg/jxZ5xr3pUt)
|
|
19
|
+
[](https://reddit.com/r/CarbonKivy)
|
|
20
|
+
[](https://github.com/CarbonKivy/CarbonKivy/discussions)
|
|
21
|
+
|
|
22
|
+
[](https://youtube.com/@CarbonKivy)
|
|
23
|
+
|
|
24
|
+
Join the CarbonKivy community to get support, share your projects, and collaborate with other developers. Here are some ways you can connect with us:
|
|
25
|
+
|
|
26
|
+
- **Discord**: Join our [CarbonKivy Community Server](https://discord.gg/jxZ5xr3pUt).
|
|
27
|
+
- **Reddit - CarbonKivy**: Feel free to join our [Reddit Community](https://reddit.com/r/CarbonKivy).
|
|
28
|
+
- **GitHub Discussions**: Participate in discussions and ask questions in the [GitHub Discussions](https://github.com/CarbonKivy/CarbonKivy/discussions) section.
|
|
29
|
+
- **YouTube - CarbonKivy**: Follow us on YouTube [@CarbonKivy](https://youtube.com/@CarbonKivy) for updates and announcements.
|
|
30
|
+
|
|
31
|
+
[Documentation](#docs): Read the documentation.
|
|
32
|
+
|
|
33
|
+
If you encounter any issues or have questions, feel free to reach out to the community or submit an issue on GitHub.
|
|
34
|
+
|
|
35
|
+
## Features
|
|
36
|
+
- Comprehensive Carbon Design components tailored for Kivy.
|
|
37
|
+
- Modern and accessible UI elements.
|
|
38
|
+
- Customizable widgets for seamless integration.
|
|
39
|
+
- Consistent and adaptive design system.
|
|
40
|
+
|
|
41
|
+
## Installation
|
|
42
|
+
- Install CarbonKivy using pip:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
pip install carbonkivy
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
- Install development version using pip `(requires git installation)`:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
pip install git+https://github.com/CarbonKivy/CarbonKivy.git@master
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
**OR**
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
pip install https://github.com/CarbonKivy/CarbonKivy/archive/master.zip
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Requirements
|
|
61
|
+
- **Python**>=3.10
|
|
62
|
+
|
|
63
|
+
- kivy>=2.0.0 `(recommended kivy>=2.3.0)`
|
|
64
|
+
|
|
65
|
+
- pillow>=10.0.0
|
|
66
|
+
|
|
67
|
+
## Contributing
|
|
68
|
+
We welcome contributions from the community! If you're interested in contributing to KvDeveloper or its documentation, please read our [Contributing Guidelines](https://github.com/CarbonKivy/CarbonKivy/blob/master/CONTRIBUTING.md).
|
|
69
|
+
|
|
70
|
+
You can contribute by:
|
|
71
|
+
|
|
72
|
+
- Reporting bugs or suggesting features in the [Issues](https://github.com/CarbonKivy/CarbonKivy/issues) section.
|
|
73
|
+
- Submitting pull requests to improve the documentation or the KvDeveloper tool.
|
|
74
|
+
- Helping with translations or writing new guides.
|
|
75
|
+
|
|
76
|
+
For more detailed instructions, please visit our [Contributing](https://github.com/CarbonKivy/CarbonKivy/blob/master/CONTRIBUTING.md) page.
|
|
77
|
+
|
|
78
|
+
## Acknowledgements
|
|
79
|
+
[Kivy](https://github.com/kivy)
|
|
80
|
+
|
|
81
|
+
## License
|
|
82
|
+
CarbonKivy is released under the [MIT License](https://github.com/CarbonKivy/CarbonKivy/blob/master/LICENSE). You're free to use, modify, and distribute this software as long as you adhere to the terms of the license.
|
|
83
|
+
|
|
84
|
+
## Contact
|
|
85
|
+
For any inquiries, please contact us at [novfensec@protonmail.com](mailto:novfensec@protonmail.com).
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
__app_name__ = "CarbonKivy"
|
|
2
|
+
__version__ = "0.0.1.dev"
|
|
3
|
+
|
|
4
|
+
from kivy.logger import Logger
|
|
5
|
+
|
|
6
|
+
from carbonkivy.config import ROOT
|
|
7
|
+
|
|
8
|
+
Logger.info(f"{__app_name__}: {__version__}")
|
|
9
|
+
Logger.info(f"{__app_name__}: Installed at {ROOT}")
|
|
10
|
+
|
|
11
|
+
import carbonkivy.factory_registers
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import os
|
|
2
|
+
|
|
3
|
+
from kivy.app import App
|
|
4
|
+
from kivy.logger import Logger
|
|
5
|
+
from kivy.lang import Builder
|
|
6
|
+
|
|
7
|
+
from carbonkivy.theme import CarbonTheme
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class CarbonApp(App, CarbonTheme):
|
|
11
|
+
def __init__(self, **kwargs):
|
|
12
|
+
super(CarbonApp, self).__init__(**kwargs)
|
|
13
|
+
|
|
14
|
+
def load_all_kv_files(self, directory: str, *args) -> None:
|
|
15
|
+
"""
|
|
16
|
+
Recursively load all kv files from a given directory.
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
for root, dirs, files in os.walk(directory):
|
|
20
|
+
if "carbonkivy" in directory:
|
|
21
|
+
Logger.critical(
|
|
22
|
+
"CarbonKivy: "
|
|
23
|
+
"Do not use the word 'carbonkivy' in the name of the "
|
|
24
|
+
"directory from where you download KV files"
|
|
25
|
+
)
|
|
26
|
+
if "venv" in root or ".buildozer" in root or os.path.join("carbonkivy") in root:
|
|
27
|
+
continue
|
|
28
|
+
for file in files:
|
|
29
|
+
if (
|
|
30
|
+
os.path.splitext(file)[1] == ".kv"
|
|
31
|
+
and file != "style.kv" # if use PyInstaller
|
|
32
|
+
and "__MACOS" not in root # if use Mac OS
|
|
33
|
+
):
|
|
34
|
+
path_to_kv_file = os.path.join(root, file)
|
|
35
|
+
Builder.load_file(path_to_kv_file)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from kivy.factory import Factory
|
|
2
|
+
|
|
3
|
+
# Alias for the register function from Factory
|
|
4
|
+
register = Factory.register
|
|
5
|
+
|
|
6
|
+
"""
|
|
7
|
+
Registers custom components to the Kivy Factory.
|
|
8
|
+
|
|
9
|
+
This code registers each component within the "ui" directory to the Kivy Factory.
|
|
10
|
+
Once registered, the components can be used without explicitly importing them elsewhere in the kvlang files.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
# Register the component with Kivy's Factory
|
|
14
|
+
register("CButton", module="carbonkivy.ui.button")
|
|
15
|
+
register("CTextInput", module="carbonkivy.ui.textinput")
|
|
16
|
+
register("CDropdown", module="carbonkivy.ui.dropdown")
|
|
17
|
+
register("CDatePicker", module="carbonkivy.ui.datepicker")
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: carbonkivy
|
|
3
|
+
Version: 0.0.1.dev0
|
|
4
|
+
Summary: A library providing IBM's Carbon Design Components for Kivy.
|
|
5
|
+
Author-email: Kartavya Shukla <novfensec@protonmail.com>
|
|
6
|
+
Maintainer-email: Kartavya Shukla <novfensec@protonmail.com>
|
|
7
|
+
License: MIT License
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2025 Kartavya Shukla
|
|
10
|
+
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions:
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
|
|
29
|
+
Project-URL: Homepage, https://github.com/Novfensec/CarbonKivy
|
|
30
|
+
Project-URL: Repository, https://github.com/Novfensec/CarbonKivy
|
|
31
|
+
Project-URL: Bug Tracker, https://github.com/Novfensec/CarbonKivy/issues
|
|
32
|
+
Project-URL: Changelog, https://github.com/Novfensec/CarbonKivy/blob/master/CHANGELOG.md
|
|
33
|
+
Keywords: kivy,open source,carbon,design,carbondesignsystem,IBM,novfensec,carbonkivy,kv
|
|
34
|
+
Classifier: Development Status :: 4 - Beta
|
|
35
|
+
Classifier: Intended Audience :: Developers
|
|
36
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
37
|
+
Classifier: Topic :: Multimedia :: Graphics
|
|
38
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
39
|
+
Classifier: Programming Language :: Python :: 3
|
|
40
|
+
Requires-Python: >=3.10
|
|
41
|
+
Description-Content-Type: text/markdown
|
|
42
|
+
License-File: LICENSE
|
|
43
|
+
Requires-Dist: kivy>=2.0.0
|
|
44
|
+
|
|
45
|
+
# CarbonKivy
|
|
46
|
+
|
|
47
|
+
[](https://pypi.org/project/kvdeveloper)
|
|
48
|
+
[](#Installation)
|
|
49
|
+

|
|
50
|
+
[](https://github.com/psf/black)
|
|
51
|
+
|
|
52
|
+
[](https://github.com/CarbonKivy/CarbonKivy/stargazers)
|
|
53
|
+
[](https://github.com/CarbonKivy/CarbonKivy/network)
|
|
54
|
+
[](https://github.com/CarbonKivy/CarbonKivy)
|
|
55
|
+
[](https://github.com/CarbonKivy/CarbonKivy/issues)
|
|
56
|
+
|
|
57
|
+
<img src="https://raw.githubusercontent.com/CarbonKivy/CarbonKivy/master/assets/images/carbonkivy_logo256.png" height="180" align="right" padding="11"/>
|
|
58
|
+
|
|
59
|
+
CarbonKivy is a Python library that integrates IBM's [Carbon Design System](https://www.carbondesignsystem.com/) with the Kivy framework. It provides a modern, accessible, and user-friendly UI toolkit inspired by Carbon’s design principles, enabling developers to create consistent and visually appealing applications in Kivy.
|
|
60
|
+
|
|
61
|
+
## Community and Support
|
|
62
|
+
[](https://discord.gg/jxZ5xr3pUt)
|
|
63
|
+
[](https://reddit.com/r/CarbonKivy)
|
|
64
|
+
[](https://github.com/CarbonKivy/CarbonKivy/discussions)
|
|
65
|
+
|
|
66
|
+
[](https://youtube.com/@CarbonKivy)
|
|
67
|
+
|
|
68
|
+
Join the CarbonKivy community to get support, share your projects, and collaborate with other developers. Here are some ways you can connect with us:
|
|
69
|
+
|
|
70
|
+
- **Discord**: Join our [CarbonKivy Community Server](https://discord.gg/jxZ5xr3pUt).
|
|
71
|
+
- **Reddit - CarbonKivy**: Feel free to join our [Reddit Community](https://reddit.com/r/CarbonKivy).
|
|
72
|
+
- **GitHub Discussions**: Participate in discussions and ask questions in the [GitHub Discussions](https://github.com/CarbonKivy/CarbonKivy/discussions) section.
|
|
73
|
+
- **YouTube - CarbonKivy**: Follow us on YouTube [@CarbonKivy](https://youtube.com/@CarbonKivy) for updates and announcements.
|
|
74
|
+
|
|
75
|
+
[Documentation](#docs): Read the documentation.
|
|
76
|
+
|
|
77
|
+
If you encounter any issues or have questions, feel free to reach out to the community or submit an issue on GitHub.
|
|
78
|
+
|
|
79
|
+
## Features
|
|
80
|
+
- Comprehensive Carbon Design components tailored for Kivy.
|
|
81
|
+
- Modern and accessible UI elements.
|
|
82
|
+
- Customizable widgets for seamless integration.
|
|
83
|
+
- Consistent and adaptive design system.
|
|
84
|
+
|
|
85
|
+
## Installation
|
|
86
|
+
- Install CarbonKivy using pip:
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
pip install carbonkivy
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
- Install development version using pip `(requires git installation)`:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
pip install git+https://github.com/CarbonKivy/CarbonKivy.git@master
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
**OR**
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
pip install https://github.com/CarbonKivy/CarbonKivy/archive/master.zip
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## Requirements
|
|
105
|
+
- **Python**>=3.10
|
|
106
|
+
|
|
107
|
+
- kivy>=2.0.0 `(recommended kivy>=2.3.0)`
|
|
108
|
+
|
|
109
|
+
- pillow>=10.0.0
|
|
110
|
+
|
|
111
|
+
## Contributing
|
|
112
|
+
We welcome contributions from the community! If you're interested in contributing to KvDeveloper or its documentation, please read our [Contributing Guidelines](https://github.com/CarbonKivy/CarbonKivy/blob/master/CONTRIBUTING.md).
|
|
113
|
+
|
|
114
|
+
You can contribute by:
|
|
115
|
+
|
|
116
|
+
- Reporting bugs or suggesting features in the [Issues](https://github.com/CarbonKivy/CarbonKivy/issues) section.
|
|
117
|
+
- Submitting pull requests to improve the documentation or the KvDeveloper tool.
|
|
118
|
+
- Helping with translations or writing new guides.
|
|
119
|
+
|
|
120
|
+
For more detailed instructions, please visit our [Contributing](https://github.com/CarbonKivy/CarbonKivy/blob/master/CONTRIBUTING.md) page.
|
|
121
|
+
|
|
122
|
+
## Acknowledgements
|
|
123
|
+
[Kivy](https://github.com/kivy)
|
|
124
|
+
|
|
125
|
+
## License
|
|
126
|
+
CarbonKivy is released under the [MIT License](https://github.com/CarbonKivy/CarbonKivy/blob/master/LICENSE). You're free to use, modify, and distribute this software as long as you adhere to the terms of the license.
|
|
127
|
+
|
|
128
|
+
## Contact
|
|
129
|
+
For any inquiries, please contact us at [novfensec@protonmail.com](mailto:novfensec@protonmail.com).
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
carbonkivy/__init__.py
|
|
5
|
+
carbonkivy/app.py
|
|
6
|
+
carbonkivy/config.py
|
|
7
|
+
carbonkivy/factory_registers.py
|
|
8
|
+
carbonkivy.egg-info/PKG-INFO
|
|
9
|
+
carbonkivy.egg-info/SOURCES.txt
|
|
10
|
+
carbonkivy.egg-info/dependency_links.txt
|
|
11
|
+
carbonkivy.egg-info/requires.txt
|
|
12
|
+
carbonkivy.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
kivy>=2.0.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
carbonkivy
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "carbonkivy"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
dependencies = [
|
|
9
|
+
"kivy>=2.0.0",
|
|
10
|
+
]
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Kartavya Shukla", email = "novfensec@protonmail.com"},
|
|
14
|
+
]
|
|
15
|
+
maintainers = [
|
|
16
|
+
{name = "Kartavya Shukla", email = "novfensec@protonmail.com"},
|
|
17
|
+
]
|
|
18
|
+
description = "A library providing IBM's Carbon Design Components for Kivy."
|
|
19
|
+
readme = "README.md"
|
|
20
|
+
license = {file = "LICENSE"}
|
|
21
|
+
keywords = ["kivy", "open source", "carbon", "design", "carbondesignsystem", "IBM", "novfensec", "carbonkivy", "kv"]
|
|
22
|
+
classifiers = [
|
|
23
|
+
"Development Status :: 4 - Beta",
|
|
24
|
+
"Intended Audience :: Developers",
|
|
25
|
+
"Topic :: Software Development :: Libraries",
|
|
26
|
+
"Topic :: Multimedia :: Graphics",
|
|
27
|
+
"License :: OSI Approved :: MIT License",
|
|
28
|
+
"Programming Language :: Python :: 3",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://github.com/Novfensec/CarbonKivy"
|
|
33
|
+
Repository = "https://github.com/Novfensec/CarbonKivy"
|
|
34
|
+
"Bug Tracker" = "https://github.com/Novfensec/CarbonKivy/issues"
|
|
35
|
+
Changelog = "https://github.com/Novfensec/CarbonKivy/blob/master/CHANGELOG.md"
|
|
36
|
+
|
|
37
|
+
[tool.setuptools.dynamic]
|
|
38
|
+
version = {attr = "carbonkivy.__version__"}
|
|
39
|
+
|
|
40
|
+
[tool.setuptools]
|
|
41
|
+
packages = ["carbonkivy"]
|
|
42
|
+
|
|
43
|
+
[tool.setuptools.package-data]
|
|
44
|
+
"carbonkivy" = [
|
|
45
|
+
"**/*.kv",
|
|
46
|
+
"**/*.png",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[tool.setuptools.exclude-package-data]
|
|
50
|
+
"carbonkivy" = ["*.pyc", "*.pyo"]
|