try: from setuptools import setup except ImportError: from distutils.core import setup setup(name='adtwist', version='1.0.0', description='Allow use of alarmdecoded with twisted', author='John-Mark Gurney', author_email='jmg@funkthat.com', url='https://github.com/jmgurney/adtwist', py_modules=['adtwist'], install_requires=[ 'alarmdecoder @ git+https://www.funkthat.com/gitea/jmg/alarmdecoder.git@a5ede28f3bdea908fff96731d156b74b4f2e49c2#egg=alarmdecoder', 'mock', 'twisted', 'pyserial', ], tests_require=[ 'coverage', ], extras_require = { 'dev': [ 'coverage' ], }, classifiers=[ 'Development Status :: 4 - Beta', 'Framework :: Twisted', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', #'Operating System :: MacOS :: MacOS X', #'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Programming Language :: Python', 'Topic :: Home Automation', 'Topic :: Security', 'Topic :: Software Development :: Libraries :: Python Modules', ], )