diff --git a/.gitignore b/.gitignore index 845bc57..12d52ae 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ .idea/ venv/ + +__pycache__/ diff --git a/setup.py b/setup.py index 911e897..a498685 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,8 @@ -import re - from setuptools import setup with open("README.rst") as fh: - long_description = re.sub( - "^.. start-no-pypi.*^.. end-no-pypi", "", fh.read(), flags=re.M | re.S - ) + long_description = fh.read() setup( name="sympasoap", diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29