python package

master
JoYo 2019-02-19 03:28:05 +00:00
parent 9aca501928
commit bed9b1806c
3 changed files with 15 additions and 2 deletions

13
setup.py Normal file
View File

@ -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',
],
},
)

View File

@ -1,3 +1,3 @@
#! /usr/bin/env python3
#!/usr/bin/env python3
from .run import sins, generation
# from .orm import SeedNode

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python3
#!/usr/bin/env python3
from .run import sins
sins()