crxsnake 0.0.0__tar.gz → 1.3.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,26 @@
1
+ Metadata-Version: 2.1
2
+ Name: crxsnake
3
+ Version: 1.3.1
4
+ Home-page: https://discord.gg/EEp67FWQDP
5
+ Author: CRX-DEV
6
+ Author-email: cherniq66@gmail.com
7
+ License: MIT License
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: tortoise-orm==0.21.0
11
+ Requires-Dist: disnake==2.9.2
12
+ Requires-Dist: aiofiles==23.2.1
13
+ Requires-Dist: loguru==0.7.2
14
+
15
+ # CRX-Snake
16
+
17
+ **CRX-Snake** is a set of utilities designed to simplify the development of projects, including the creation of Discord bots. This library contains a number of features and tools to help you quickly develop and customize bots and other components of your projects.
18
+
19
+ ## Description
20
+
21
+ CRX-Snake was developed specifically for internal use and is now available to other developers. It provides user-friendly features and solutions for common tasks in bot development and project management. It includes:
22
+
23
+ - **Features for working with Discord**: Tools for creating and managing Discord bots using the Disnake library.
24
+ - **File Utilities**: Functions for reading and writing JSON files, making it easy to work with configurations and data.
25
+ - **Database Tools**: Interfaces with Tortoise ORM for data management and query execution.
26
+ - **Logging and debugging**: Includes functions for error logging and debugging.
@@ -4,8 +4,8 @@ from .files import read_json, write_json
4
4
  from .tortoise import Database
5
5
  from .misc import *
6
6
 
7
- from ...issues.hotline import IssueHotline
8
- from ...issues.crx import IssueCRX
7
+ from .issues.hotline import IssueHotline
8
+ from .issues.crx import IssueCRX
9
9
 
10
10
 
11
11
  __all__ = [
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.1
2
+ Name: crxsnake
3
+ Version: 1.3.1
4
+ Home-page: https://discord.gg/EEp67FWQDP
5
+ Author: CRX-DEV
6
+ Author-email: cherniq66@gmail.com
7
+ License: MIT License
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: tortoise-orm==0.21.0
11
+ Requires-Dist: disnake==2.9.2
12
+ Requires-Dist: aiofiles==23.2.1
13
+ Requires-Dist: loguru==0.7.2
14
+
15
+ # CRX-Snake
16
+
17
+ **CRX-Snake** is a set of utilities designed to simplify the development of projects, including the creation of Discord bots. This library contains a number of features and tools to help you quickly develop and customize bots and other components of your projects.
18
+
19
+ ## Description
20
+
21
+ CRX-Snake was developed specifically for internal use and is now available to other developers. It provides user-friendly features and solutions for common tasks in bot development and project management. It includes:
22
+
23
+ - **Features for working with Discord**: Tools for creating and managing Discord bots using the Disnake library.
24
+ - **File Utilities**: Functions for reading and writing JSON files, making it easy to work with configurations and data.
25
+ - **Database Tools**: Interfaces with Tortoise ORM for data management and query execution.
26
+ - **Logging and debugging**: Includes functions for error logging and debugging.
@@ -1,7 +1,6 @@
1
1
  LICENSE
2
- MANIFEST.in
3
2
  README.md
4
- pyproject.toml
3
+ setup.py
5
4
  crxsnake/__init__.py
6
5
  crxsnake/cogs.py
7
6
  crxsnake/files.py
@@ -11,6 +10,7 @@ crxsnake/tortoise.py
11
10
  crxsnake.egg-info/PKG-INFO
12
11
  crxsnake.egg-info/SOURCES.txt
13
12
  crxsnake.egg-info/dependency_links.txt
13
+ crxsnake.egg-info/requires.txt
14
14
  crxsnake.egg-info/top_level.txt
15
15
  crxsnake/issues/__init__.py
16
16
  crxsnake/issues/crx.py
@@ -0,0 +1,4 @@
1
+ tortoise-orm==0.21.0
2
+ disnake==2.9.2
3
+ aiofiles==23.2.1
4
+ loguru==0.7.2
@@ -0,0 +1,25 @@
1
+ from setuptools import setup, find_packages
2
+ from pathlib import Path
3
+
4
+ this_directory = Path(__file__).parent
5
+ long_description = (this_directory / "README.md").read_text()
6
+ requires = [
7
+ "tortoise-orm==0.21.0",
8
+ "disnake==2.9.2",
9
+ "aiofiles==23.2.1",
10
+ "loguru==0.7.2",
11
+ ]
12
+
13
+
14
+ setup(
15
+ name="crxsnake",
16
+ version="1.3.1",
17
+ long_description=long_description,
18
+ long_description_content_type="text/markdown",
19
+ author="CRX-DEV",
20
+ author_email="cherniq66@gmail.com",
21
+ url="https://discord.gg/EEp67FWQDP",
22
+ license="MIT License",
23
+ packages=find_packages(),
24
+ install_requires=requires,
25
+ )
@@ -1,4 +0,0 @@
1
- graft crxsnake
2
- include pyproject.toml
3
- include setup.py
4
- global-exclude *.py[cod]
crxsnake-0.0.0/PKG-INFO DELETED
@@ -1,4 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: crxsnake
3
- Version: 0.0.0
4
- License-File: LICENSE
@@ -1,4 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: crxsnake
3
- Version: 0.0.0
4
- License-File: LICENSE
@@ -1,6 +0,0 @@
1
- [build-system]
2
- requires = [
3
- "setuptools>42",
4
- "wheel"
5
- ]
6
- build-backend = "setuptools.build_meta"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes