python package
parent
9aca501928
commit
bed9b1806c
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env python3
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="sins",
|
||||
version="0.0.1",
|
||||
packages=["sins"],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'sins = sins:sins',
|
||||
],
|
||||
},
|
||||
)
|
|
@ -1,3 +1,3 @@
|
|||
#! /usr/bin/env python3
|
||||
#!/usr/bin/env python3
|
||||
from .run import sins, generation
|
||||
# from .orm import SeedNode
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#! /usr/bin/env python3
|
||||
#!/usr/bin/env python3
|
||||
from .run import sins
|
||||
|
||||
sins()
|
||||
|
|
Loading…
Reference in New Issue