Add (empty) test package
This commit is contained in:
parent
4531a71414
commit
a5bbdf3a8b
|
@ -1,3 +1,5 @@
|
|||
.idea/
|
||||
|
||||
venv/
|
||||
|
||||
__pycache__/
|
||||
|
|
6
setup.py
6
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",
|
||||
|
|
Loading…
Reference in New Issue