8 lines
107 B
Python
8 lines
107 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="soe",
|
|
version="1.0.0",
|
|
scripts=["bin/soe-python"]
|
|
)
|