forked from cedrus-opensource/pyxid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 1.01 KB
/
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
from setuptools import setup, find_packages
setup(
name = "pyxid",
version = "1.1",
packages = find_packages(),
install_requires = ["pyserial>=3.1"],
author = "Grant Limberg",
author_email = "[email protected]",
maintainer = "Cedrus Corporation",
maintainer_email = "[email protected]",
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",
]
)