Add (empty) test package
This commit is contained in:
parent
4531a71414
commit
a5bbdf3a8b
|
@ -1,3 +1,5 @@
|
||||||
.idea/
|
.idea/
|
||||||
|
|
||||||
venv/
|
venv/
|
||||||
|
|
||||||
|
__pycache__/
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -1,12 +1,8 @@
|
||||||
import re
|
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
|
|
||||||
with open("README.rst") as fh:
|
with open("README.rst") as fh:
|
||||||
long_description = re.sub(
|
long_description = fh.read()
|
||||||
"^.. start-no-pypi.*^.. end-no-pypi", "", fh.read(), flags=re.M | re.S
|
|
||||||
)
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="sympasoap",
|
name="sympasoap",
|
||||||
|
|
Loading…
Reference in New Issue