hellopy-package 1.0.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.
- hellopy_package-1.0.0/PKG-INFO +15 -0
- hellopy_package-1.0.0/hellopy/__init__.py +0 -0
- hellopy_package-1.0.0/hellopy/core.py +3 -0
- hellopy_package-1.0.0/hellopy_package.egg-info/PKG-INFO +15 -0
- hellopy_package-1.0.0/hellopy_package.egg-info/SOURCES.txt +8 -0
- hellopy_package-1.0.0/hellopy_package.egg-info/dependency_links.txt +1 -0
- hellopy_package-1.0.0/hellopy_package.egg-info/top_level.txt +1 -0
- hellopy_package-1.0.0/setup.cfg +4 -0
- hellopy_package-1.0.0/setup.py +15 -0
- hellopy_package-1.0.0/tests/test_core.py +7 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hellopy-package
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Lib para dizer olá em Python
|
|
5
|
+
Home-page: https://github.com/lucaspolaquini/hellopy
|
|
6
|
+
Author: Lucas Faria Polaquini
|
|
7
|
+
Author-email: cmte.lucas@hotmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Dynamic: author
|
|
11
|
+
Dynamic: author-email
|
|
12
|
+
Dynamic: description-content-type
|
|
13
|
+
Dynamic: home-page
|
|
14
|
+
Dynamic: license
|
|
15
|
+
Dynamic: summary
|
|
File without changes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hellopy-package
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Lib para dizer olá em Python
|
|
5
|
+
Home-page: https://github.com/lucaspolaquini/hellopy
|
|
6
|
+
Author: Lucas Faria Polaquini
|
|
7
|
+
Author-email: cmte.lucas@hotmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Dynamic: author
|
|
11
|
+
Dynamic: author-email
|
|
12
|
+
Dynamic: description-content-type
|
|
13
|
+
Dynamic: home-page
|
|
14
|
+
Dynamic: license
|
|
15
|
+
Dynamic: summary
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
hellopy
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
with open("readme.md", "r", encoding="utf-8") as fh:
|
|
3
|
+
long_description = fh.read()
|
|
4
|
+
setup(
|
|
5
|
+
name='hellopy-package',
|
|
6
|
+
version='1.0.0',
|
|
7
|
+
packages=find_packages(),
|
|
8
|
+
description='Lib para dizer olá em Python',
|
|
9
|
+
author='Lucas Faria Polaquini',
|
|
10
|
+
author_email='cmte.lucas@hotmail.com',
|
|
11
|
+
url='https://github.com/lucaspolaquini/hellopy',
|
|
12
|
+
license='MIT',
|
|
13
|
+
long_description=long_description,
|
|
14
|
+
long_description_content_type='text/markdown'
|
|
15
|
+
)
|