Changeset - 4833be74f5c0
[Not reviewed]
default
0 1 0
Laman - 4 years ago 2020-04-13 15:03:42

added an entry point to be executable
1 file changed with 6 insertions and 3 deletions:
0 comments (0 inline, 0 general)
setup.py
Show inline comments
 
from setuptools import setup
 
from setuptools import setup, find_packages
 

	
 

	
 
setup(
 
	name="Shamira",
 
	version="0.1",
 
	packages=["shamira"],
 
	package_dir={"": "src"}
 
	packages=find_packages("src"),
 
	package_dir={"": "src"},
 
	entry_points={
 
		"console_scripts": ["shamira=shamira.cli:run"]
 
	}
 
)
0 comments (0 inline, 0 general)