You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
328 B
13 lines
328 B
#!/usr/bin/env python3
|
|
"""
|
|
We do the package handling in the static setup.cfg but include an empty setup.py
|
|
to allow editable installs https://packaging.python.org/tutorials/packaging-projects/
|
|
and provide extensibility
|
|
"""
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
setup()
|