setup.py 314 B

12345678910111213
  1. """Setup.py entry point for package.
  2. Configuration is handled by setuptools>30.3.0 through setup.cfg.
  3. https://setuptools.readthedocs.io/en/latest/setuptools.html#metadata
  4. https://setuptools.readthedocs.io/en/latest/setuptools.html#options
  5. """
  6. import setuptools
  7. setuptools.setup(
  8. package_dir={'': 'src'},
  9. )