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
|
from setuptools import setup, find_packages
setup(
name = "pyxid",
version = "1.0",
packages = find_packages(),
install_requires = ["pyserial>=2.5"],
author = "Grant Limberg",
author_email = "glimberg@cedrus.com",
maintainer = "Cedrus Corporation",
maintainer_email = "opensource@cedrus.com",
description = ("Pure python library for communicating with Cedrus XID "
"and StimTracker devices."),
long_description = open('README.txt').read(),
license = "BSD",
keywords = "cedrus xid XID stimulus response data collection",
url = "http://www.github.com/cedrus-opensource/pyxid/",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: System :: Hardware",
"Programming Language :: Python",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
]
)
|