diff --git a/.travis.yml b/.travis.yml index 09bc50a74..e9a9a9bef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,3 +5,4 @@ python: install: - pip install -q -r requirements-dev.txt - flake8 + - pytest Libpythonpro \ No newline at end of file diff --git a/Libpythonpro/__init__.py b/Libpythonpro/__init__.py index 5e3048b21..edcfd0dd7 100644 --- a/Libpythonpro/__init__.py +++ b/Libpythonpro/__init__.py @@ -1 +1 @@ -__version__ = '0.1' \ No newline at end of file +__version__ = '0.2' \ No newline at end of file diff --git a/Libpythonpro/tests/__init__.py b/Libpythonpro/tests/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/Libpythonpro/tests/test_exemplo.py b/Libpythonpro/tests/test_exemplo.py new file mode 100644 index 000000000..41c6a2761 --- /dev/null +++ b/Libpythonpro/tests/test_exemplo.py @@ -0,0 +1,2 @@ +def test_int(): + assert 1 == 0 \ No newline at end of file diff --git a/setup.py b/setup.py index 895662a98..f4c5b0992 100644 --- a/setup.py +++ b/setup.py @@ -117,7 +117,7 @@ def find_package_data( long_description_content_type='text/markdown', author=AUTHOR, author_email=AUTHOR_EMAIL, - license=read('LICENSE'), + license=read('GNU AFFERO GENERAL PUBLIC LICENSE'), url=URL, packages=find_packages(exclude=["tests.*", "tests"]), package_data=find_package_data(PACKAGE, only_in_packages=False),