diff --git a/libs/pyftdi b/libs/pyftdi deleted file mode 160000 index b1a3412..0000000 --- a/libs/pyftdi +++ /dev/null @@ -1 +0,0 @@ -Subproject commit b1a341240b29750d6448ac452c611c09c238e5d6 diff --git a/pyad2/pyftdi b/pyad2/pyftdi deleted file mode 120000 index b985199..0000000 --- a/pyad2/pyftdi +++ /dev/null @@ -1 +0,0 @@ -../../../libs/pyftdi/pyftdi \ No newline at end of file diff --git a/pyftdi b/pyftdi deleted file mode 120000 index 356cfd1..0000000 --- a/pyftdi +++ /dev/null @@ -1 +0,0 @@ -libs/pyftdi/pyftdi/ \ No newline at end of file diff --git a/setup.py b/setup.py index bfe8339..4ebce82 100644 --- a/setup.py +++ b/setup.py @@ -9,10 +9,13 @@ setup(name='pyad2', description='Python interface library for the AD2 family of alarm devices.', long_description=readme(), classifiers=[ - 'Development Status :: 3 - Alpha', - 'License :: OSI Approved :: MIT License', + 'Development Status :: 4 - Beta', + #'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2.7', - 'Topic :: Security Alarms', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Communications', + 'Topic :: Home Automation', + 'Topic :: Security', ], keywords='alarm data ad2usb ad2serial ad2pi security ademco dsc', url='http://github.com/nutechsoftware/pyad2', @@ -23,8 +26,11 @@ setup(name='pyad2', install_requires=[ 'pyopenssl', 'pyusb>=1.0.0b1', - 'pyserial>=2.6', - 'pyftdi', + 'pyserial>=2.7', + 'pyftdi>=0.7.0', + ], + dependency_links=[ + 'https://github.com/eblot/pyftdi/archive/v0.8.0.tar.gz#egg=pyftdi-0.8.0' ], test_suite='nose.collector', tests_require=['nose', 'mock'],