8 lines
166 B
Python
8 lines
166 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
"""Setup file for the publish module. All configuration stands in the setup.cfg file."""
|
||
|
|
# coding: utf-8
|
||
|
|
|
||
|
|
from setuptools import setup
|
||
|
|
|
||
|
|
setup()
|