17 lines
342 B
Python
Executable File
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",
|
|
],
|
|
}
|
|
)
|