stcgal/setup.py
2015-11-23 22:19:21 +01:00

17 lines
342 B
Python
Executable File

#!/usr/bin/env python3
import stcgal
from setuptools import setup, find_packages
setup(
name = "stcgal",
version = stcgal.__version__,
packages = find_packages(exclude=["doc"]),
install_requires = ["pyserial"],
entry_points = {
"console_scripts": [
"stcgal = stcgal.frontend:cli",
],
}
)