Skip to content

Commit 75ebe09

Browse files
committed
add install_requires and entry_points to setup.py
1 parent a87780b commit 75ebe09

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
setup(
1111
name = __appname__,
1212
version = __version__,
13-
packages = [ 'sunlight', 'sunlight.services' ],
13+
packages = ['sunlight', 'sunlight.services'],
14+
15+
install_requires = ['clint'],
16+
entry_points = {'console_scripts': ['sunlight = sunlight.cli:main']},
1417

1518
author = "Paul Tagliamonte",
1619
author_email = "[email protected]",

0 commit comments

Comments
 (0)