We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84a7ef4 commit a30cc7dCopy full SHA for a30cc7d
1 file changed
setup.py
@@ -6,7 +6,7 @@ def read(fname):
6
return open(os.path.join(os.path.dirname(__file__), fname)).read()
7
8
def run_setup():
9
- setup(
+ setup(
10
name='sqlfeedgraphite',
11
version='0.2',
12
description='https://github.com/orachide/sql-feed-graphite',
@@ -25,6 +25,10 @@ def run_setup():
25
zip_safe=True,
26
classifiers=[
27
],
28
+ entry_points="""
29
+ [console_scripts]
30
+ sqlfeedgraphite=sqlfeedgraphite:main
31
+ """,
32
)
33
if __name__ == '__main__':
34
run_setup()
0 commit comments