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.
@@ -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,3 @@
1
+ # hellopy/core.py
2
+ def hello_world():
3
+ return "Hello, world!"
@@ -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,8 @@
1
+ setup.py
2
+ hellopy/__init__.py
3
+ hellopy/core.py
4
+ hellopy_package.egg-info/PKG-INFO
5
+ hellopy_package.egg-info/SOURCES.txt
6
+ hellopy_package.egg-info/dependency_links.txt
7
+ hellopy_package.egg-info/top_level.txt
8
+ tests/test_core.py
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )
@@ -0,0 +1,7 @@
1
+ import pytest
2
+ import sys
3
+ import os
4
+ sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')))
5
+ from hellopy.core import hello_world
6
+ def test_hello_world():
7
+ assert hello_world() == "Hello, world!"