-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 881 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='amadash',
version='1.0.0',
description='Amazon Dash button monitor',
author='Igor Partola',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'conf', 'tmp']),
entry_points={
'console_scripts': [
'amadash = amadash.main:main',
'amadash-discover = amadash.discover:main',
]
},
#install_requires=['pypcap'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
],
)