setup.py 537 B

1234567891011121314151617
  1. """
  2. Setup file for electromyogram.
  3. Use setup.cfg to configure your project.
  4. """
  5. from setuptools import setup
  6. if __name__ == "__main__":
  7. try:
  8. setup(use_scm_version={"version_scheme": "no-guess-dev"})
  9. except: # noqa
  10. print(
  11. "\n\nAn error occurred while building the project, "
  12. "please ensure you have the most updated version of setuptools, "
  13. "setuptools_scm and wheel with:\n"
  14. " pip install -U setuptools setuptools_scm wheel\n\n"
  15. )
  16. raise