soup-files 1.0.0__tar.gz → 1.2__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,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: soup_files
3
+ Version: 1.2
4
+ Summary: soup_files
5
+ Author: Bruno Chaves
6
+ Requires-Python: >=3.11
7
+ Description-Content-Type: text/markdown
8
+
9
+ # soup_files
10
+
@@ -0,0 +1,2 @@
1
+ # soup_files
2
+
@@ -1,16 +1,22 @@
1
1
  [build-system]
2
- requires = ["setuptools>=61.0"]
2
+ requires = ["setuptools>=61.0.0", "wheel"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "soup_files"
7
- version = "1.0.0"
8
- description = "soup_files"
7
+ version = "1.2"
9
8
  authors = [
10
- { name="Bruno"}
9
+ { name="Bruno Chaves"},
11
10
  ]
11
+ description = "soup_files"
12
12
  readme = "README.md"
13
13
  requires-python = ">=3.11"
14
- license = { text = "MIT" }
15
- dependencies = []
16
14
 
15
+ dependencies = [
16
+
17
+ ]
18
+
19
+ [tool.setuptools]
20
+ packages = [
21
+
22
+ ]
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: soup_files
3
+ Version: 1.2
4
+ Summary: soup_files
5
+ Author: Bruno Chaves
6
+ Requires-Python: >=3.11
7
+ Description-Content-Type: text/markdown
8
+
9
+ # soup_files
10
+
@@ -1,8 +1,6 @@
1
1
  README.md
2
2
  pyproject.toml
3
- setup.py
4
3
  soup_files.egg-info/PKG-INFO
5
4
  soup_files.egg-info/SOURCES.txt
6
5
  soup_files.egg-info/dependency_links.txt
7
- soup_files.egg-info/not-zip-safe
8
6
  soup_files.egg-info/top_level.txt
soup_files-1.0.0/PKG-INFO DELETED
@@ -1,21 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: soup_files
3
- Version: 1.0.0
4
- Summary: soup_files
5
- Author: Bruno
6
- Author-email: brunodasill@gmail.com
7
- License: MIT
8
- Requires-Python: >=3.11
9
- Description-Content-Type: text/markdown
10
- Dynamic: author-email
11
-
12
- # file-utils
13
-
14
- # Uso
15
- from file import File, Directory
16
-
17
- filename:str = 'path/to/file'
18
- dirpath:str = 'path/to/dir'
19
-
20
- f = File(filename)
21
- d = Directory(dirpath)
@@ -1,10 +0,0 @@
1
- # file-utils
2
-
3
- # Uso
4
- from file import File, Directory
5
-
6
- filename:str = 'path/to/file'
7
- dirpath:str = 'path/to/dir'
8
-
9
- f = File(filename)
10
- d = Directory(dirpath)
soup_files-1.0.0/setup.py DELETED
@@ -1,33 +0,0 @@
1
- #!/usr/bin/env python3
2
- # -*- coding: utf-8 -*-
3
-
4
- import os
5
- import sys
6
-
7
- try:
8
- from setuptools import setup
9
- except Exception as e:
10
- print(e)
11
- sys.exit(1)
12
-
13
- file_setup = os.path.abspath(os.path.realpath(__file__))
14
- dir_of_project = os.path.dirname(file_setup)
15
-
16
- sys.path.insert(0, dir_of_project)
17
-
18
- __version__ = '1.0.0'
19
- DESCRIPTION = ''
20
- LONG_DESCRIPTION = ''
21
-
22
- setup(
23
- name='file_paths',
24
- version=__version__,
25
- description=DESCRIPTION,
26
- long_description=LONG_DESCRIPTION,
27
- author_email='brunodasill@gmail.com',
28
- license='MIT',
29
- zip_safe=False,
30
- py_modules=['file_paths'], # <-- Aqui é o nome do arquivo .py sem a extensão
31
- )
32
-
33
-
@@ -1,21 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: soup_files
3
- Version: 1.0.0
4
- Summary: soup_files
5
- Author: Bruno
6
- Author-email: brunodasill@gmail.com
7
- License: MIT
8
- Requires-Python: >=3.11
9
- Description-Content-Type: text/markdown
10
- Dynamic: author-email
11
-
12
- # file-utils
13
-
14
- # Uso
15
- from file import File, Directory
16
-
17
- filename:str = 'path/to/file'
18
- dirpath:str = 'path/to/dir'
19
-
20
- f = File(filename)
21
- d = Directory(dirpath)
@@ -1 +0,0 @@
1
- file_paths
File without changes