maxo 0.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.
@@ -0,0 +1,8 @@
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
4
+ # Editor-based HTTP Client requests
5
+ /httpRequests/
6
+ # Datasource local storage ignored files
7
+ /dataSources/
8
+ /dataSources.local.xml
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="PropertiesComponent">{
4
+ &quot;keyToString&quot;: {
5
+ &quot;settings.editor.selected.configurable&quot;: &quot;preferences.lookFeel&quot;
6
+ }
7
+ }</component>
8
+ </project>
maxo-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: maxo
3
+ Version: 0.1.0
4
+ Summary: заглушка
5
+ Author-email: Kirill Lesovoy <kirill.lesovoi@mail.ru>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Requires-Python: >=3.12
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"
@@ -0,0 +1,15 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='maxo', # Имя пакета — то, что вы хотите занять
5
+ version='0.1.0', # Начальная версия
6
+ description='Моя библиотека maxo — заглушка для резерва',
7
+ author='Ваше имя',
8
+ author_email='your.email@example.com',
9
+ packages=find_packages(), # Автоматически найдёт maxo/
10
+ classifiers=[
11
+ 'Programming Language :: Python :: 3',
12
+ 'License :: OSI Approved :: MIT License', # Или ваша лицензия
13
+ ],
14
+ python_requires='>=3.6',
15
+ )
@@ -0,0 +1,15 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "maxo"
7
+ version = "0.1.0"
8
+ description = "заглушка"
9
+ authors = [{name = "Kirill Lesovoy", email = "kirill.lesovoi@mail.ru"}]
10
+ license = {text = "MIT"}
11
+ requires-python = ">=3.12"
12
+ dependencies = []
13
+ classifiers = [
14
+ "Programming Language :: Python :: 3",
15
+ ]