rpa-suite 0.2.8__tar.gz → 0.2.9__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.
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/PKG-INFO +4 -4
- rpa_suite-0.2.9/README.md +6 -0
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/rpa_suite.egg-info/PKG-INFO +4 -4
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/rpa_suite.egg-info/SOURCES.txt +1 -0
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/setup.py +2 -2
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/LICENSE +0 -0
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/rpa_suite/__init__.py +0 -0
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/rpa_suite/emails/__init__.py +0 -0
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/rpa_suite/files/__init__.py +0 -0
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/rpa_suite/logs/__init__.py +0 -0
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/rpa_suite/logs/loggin.py +0 -0
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/rpa_suite.egg-info/dependency_links.txt +0 -0
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/rpa_suite.egg-info/requires.txt +0 -0
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/rpa_suite.egg-info/top_level.txt +0 -0
- {rpa_suite-0.2.8 → rpa_suite-0.2.9}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: rpa_suite
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.9
|
4
4
|
Summary: Conjunto de ferramentas essenciais para RPA com Python, que facilitam o dia a dia de desenvolvimento.
|
5
5
|
Author: Camilo Costa de Carvalho
|
6
6
|
Author-email: camilo.costa1993@gmail.com
|
@@ -15,9 +15,9 @@ Classifier: Programming Language :: Python :: 3.9
|
|
15
15
|
License-File: LICENSE
|
16
16
|
Requires-Dist: loguru
|
17
17
|
|
18
|
-
|
18
|
+
Suite RPA - Toolkit for your bot building
|
19
19
|
|
20
|
-
|
20
|
+
This is a simple toolkit for developers RPA.
|
21
21
|
|
22
22
|
You can see more on github.
|
23
|
-
|
23
|
+
https://github.com/CamiloCCarvalho/rpa_suite
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: rpa-suite
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.9
|
4
4
|
Summary: Conjunto de ferramentas essenciais para RPA com Python, que facilitam o dia a dia de desenvolvimento.
|
5
5
|
Author: Camilo Costa de Carvalho
|
6
6
|
Author-email: camilo.costa1993@gmail.com
|
@@ -15,9 +15,9 @@ Classifier: Programming Language :: Python :: 3.9
|
|
15
15
|
License-File: LICENSE
|
16
16
|
Requires-Dist: loguru
|
17
17
|
|
18
|
-
|
18
|
+
Suite RPA - Toolkit for your bot building
|
19
19
|
|
20
|
-
|
20
|
+
This is a simple toolkit for developers RPA.
|
21
21
|
|
22
22
|
You can see more on github.
|
23
|
-
|
23
|
+
https://github.com/CamiloCCarvalho/rpa_suite
|
@@ -2,10 +2,10 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='rpa_suite',
|
5
|
-
version='0.2.
|
5
|
+
version='0.2.9',
|
6
6
|
packages=find_packages(),
|
7
7
|
description='Conjunto de ferramentas essenciais para RPA com Python, que facilitam o dia a dia de desenvolvimento.',
|
8
|
-
long_description=open('
|
8
|
+
long_description=open('README.md').read(),
|
9
9
|
author='Camilo Costa de Carvalho',
|
10
10
|
author_email='camilo.costa1993@gmail.com',
|
11
11
|
license='MIT',
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|