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