Skip to content

Commit e011e50

Browse files
readd setup.py
1 parent d05ee85 commit e011e50

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
"""
2+
Setup file for mud_examples.
3+
Use setup.cfg to configure your project.
4+
5+
This file was generated with PyScaffold 4.0.1.
6+
PyScaffold helps you to put up the scaffold of your new Python project.
7+
Learn more under: https://pyscaffold.org/
8+
"""
9+
from setuptools import setup
10+
11+
if __name__ == "__main__":
12+
try:
13+
setup(use_scm_version={"version_scheme": "no-guess-dev"})
14+
except: # noqa
15+
print(
16+
"\n\nAn error occurred while building the project, "
17+
"please ensure you have the most updated version of setuptools, "
18+
"setuptools_scm and wheel with:\n"
19+
" pip install -U setuptools setuptools_scm wheel\n\n"
20+
)
21+
raise

0 commit comments

Comments
 (0)