pathl 0.1.0b1__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.
pathl-0.1.0b1/PKG-INFO ADDED
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: pathl
3
+ Version: 0.1.0b1
4
+ Summary: Pathl - biblioteka ogólnego przeznaczenia
5
+ Author: Alicja
6
+ Author-email: Alicja <alicjajett@gmail.com>
7
+ Maintainer-email: Alicja <alicjajett@gmail.com>
8
+ License-Expression: MIT
9
+ Project-URL: Homepage, https://github.com/AlicjaPathl/pathl
10
+ Project-URL: Repository, https://github.com/AlicjaPathl/pathl.git
11
+ Project-URL: Bug Tracker, https://github.com/AlicjaPathl/pathl/issues
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ Requires-Dist: httpx
15
+ Provides-Extra: dev
16
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
17
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
18
+ Requires-Dist: build>=1.0.0; extra == "dev"
19
+ Requires-Dist: twine>=4.0.0; extra == "dev"
20
+ Requires-Dist: black>=23.0.0; extra == "dev"
21
+ Requires-Dist: isort>=5.12.0; extra == "dev"
22
+ Requires-Dist: flake8>=6.0.0; extra == "dev"
23
+ Requires-Dist: mypy>=1.0.0; extra == "dev"
24
+ Provides-Extra: cli
25
+ Requires-Dist: click>=8.0.0; extra == "cli"
26
+ Provides-Extra: gui
27
+ Dynamic: author
28
+ Dynamic: requires-python
29
+
30
+ # pathl
@@ -0,0 +1 @@
1
+ # pathl
@@ -0,0 +1,7 @@
1
+ """Pathl - biblioteka ogólnego przeznaczenia."""
2
+
3
+ __version__ = "0.1.0-b1"
4
+
5
+ from .hello.world import hello
6
+ from .crypto.rsa import rsa
7
+ __all__ = ["hello", "__version__","rsa"]
@@ -0,0 +1,2 @@
1
+ def main():
2
+ print("hello world")
@@ -0,0 +1,2 @@
1
+ def rsa(key):
2
+ print(key)
@@ -0,0 +1,2 @@
1
+ def hello():
2
+ print("Hello From Pathl")
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: pathl
3
+ Version: 0.1.0b1
4
+ Summary: Pathl - biblioteka ogólnego przeznaczenia
5
+ Author: Alicja
6
+ Author-email: Alicja <alicjajett@gmail.com>
7
+ Maintainer-email: Alicja <alicjajett@gmail.com>
8
+ License-Expression: MIT
9
+ Project-URL: Homepage, https://github.com/AlicjaPathl/pathl
10
+ Project-URL: Repository, https://github.com/AlicjaPathl/pathl.git
11
+ Project-URL: Bug Tracker, https://github.com/AlicjaPathl/pathl/issues
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ Requires-Dist: httpx
15
+ Provides-Extra: dev
16
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
17
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
18
+ Requires-Dist: build>=1.0.0; extra == "dev"
19
+ Requires-Dist: twine>=4.0.0; extra == "dev"
20
+ Requires-Dist: black>=23.0.0; extra == "dev"
21
+ Requires-Dist: isort>=5.12.0; extra == "dev"
22
+ Requires-Dist: flake8>=6.0.0; extra == "dev"
23
+ Requires-Dist: mypy>=1.0.0; extra == "dev"
24
+ Provides-Extra: cli
25
+ Requires-Dist: click>=8.0.0; extra == "cli"
26
+ Provides-Extra: gui
27
+ Dynamic: author
28
+ Dynamic: requires-python
29
+
30
+ # pathl
@@ -0,0 +1,13 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ pathl/__init__.py
5
+ pathl.egg-info/PKG-INFO
6
+ pathl.egg-info/SOURCES.txt
7
+ pathl.egg-info/dependency_links.txt
8
+ pathl.egg-info/entry_points.txt
9
+ pathl.egg-info/requires.txt
10
+ pathl.egg-info/top_level.txt
11
+ pathl/cli/main.py
12
+ pathl/crypto/rsa.py
13
+ pathl/hello/world.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pathl = pathl.cli.main:main
@@ -0,0 +1,16 @@
1
+ httpx
2
+
3
+ [cli]
4
+ click>=8.0.0
5
+
6
+ [dev]
7
+ pytest>=7.0.0
8
+ pytest-cov>=4.0.0
9
+ build>=1.0.0
10
+ twine>=4.0.0
11
+ black>=23.0.0
12
+ isort>=5.12.0
13
+ flake8>=6.0.0
14
+ mypy>=1.0.0
15
+
16
+ [gui]
@@ -0,0 +1 @@
1
+ pathl
@@ -0,0 +1,60 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "pathl"
7
+ version = "0.1.0-b1"
8
+ description = "Pathl - biblioteka ogólnego przeznaczenia"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = "MIT"
12
+ authors = [
13
+ {name = "Alicja", email = "alicjajett@gmail.com"},
14
+ ]
15
+ maintainers = [
16
+ {name = "Alicja", email = "alicjajett@gmail.com"}
17
+ ]
18
+ dependencies = [
19
+ "httpx",
20
+ ]
21
+
22
+ [project.optional-dependencies]
23
+ dev = [
24
+ "pytest>=7.0.0",
25
+ "pytest-cov>=4.0.0",
26
+ "build>=1.0.0",
27
+ "twine>=4.0.0",
28
+ "black>=23.0.0",
29
+ "isort>=5.12.0",
30
+ "flake8>=6.0.0",
31
+ "mypy>=1.0.0",
32
+ ]
33
+ cli = ["click>=8.0.0"]
34
+ gui = []
35
+
36
+ [project.urls]
37
+ Homepage = "https://github.com/AlicjaPathl/pathl"
38
+ Repository = "https://github.com/AlicjaPathl/pathl.git"
39
+ "Bug Tracker" = "https://github.com/AlicjaPathl/pathl/issues"
40
+
41
+ [project.scripts]
42
+ pathl = "pathl.cli.main:main"
43
+
44
+ # Konfiguracja dla setuptools - szukamy w katalogu pathl
45
+ [tool.setuptools.packages.find]
46
+ where = ["."]
47
+ include = ["pathl*", "pathl.*"]
48
+
49
+ # Narzędzia deweloperskie
50
+ [tool.pytest.ini_options]
51
+ testpaths = ["tests"]
52
+ python_files = "test_*.py"
53
+
54
+ [tool.black]
55
+ line-length = 88
56
+ target-version = ['py38', 'py39', 'py310', 'py311']
57
+
58
+ [tool.isort]
59
+ profile = "black"
60
+ line_length = 88
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
pathl-0.1.0b1/setup.py ADDED
@@ -0,0 +1,20 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="pathl-utils", # Zmieniona nazwa
5
+ version="0.1.0b1",
6
+ packages=find_packages(),
7
+ install_requires=["httpx"],
8
+ entry_points={
9
+ "console_scripts": [
10
+ "pathl = pathl.cli:main",
11
+ ],
12
+ },
13
+ python_requires=">=3.8",
14
+ author="Alicja",
15
+ author_email="alicjajett@gmail.com",
16
+ description="Pathl - biblioteka ogólnego przeznaczenia",
17
+ license="MIT",
18
+ long_description=open("README.md").read(),
19
+ long_description_content_type="text/markdown",
20
+ )