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