Skip to content

Commit 15f94f9

Browse files
committed
Update setup.py
1 parent e22fb3d commit 15f94f9

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

setup.py

+10-7
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@
22

33
setup(
44
name='nuimo',
5+
packages=['nuimo', 'gatt'],
56
version='0.1.0',
67
description='Nuimo SDK for Python on Linux',
8+
keywords='nuimo',
79
url='https://github.com/getsenic/nuimo-linux-python',
8-
maintainer='Senic GmbH',
9-
maintainer_email='[email protected]',
10+
download_url='https://github.com/getsenic/nuimo-linux-python/archive/0.1.0.tar.gz',
11+
author='Senic GmbH',
12+
author_email='[email protected]',
1013
license='MIT',
11-
modules=['nuimo', 'gatt'],
12-
entry_points="""
13-
[console_scripts]
14-
nuimoctl = nuimoctl:main
15-
""")
14+
py_modules=['nuimoctl'],
15+
entry_points={
16+
'console_scripts': ['nuimoctl = nuimoctl:main']
17+
}
18+
)

0 commit comments

Comments
 (0)