-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.24 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.24 KB
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
31
32
33
from setuptools import setup, find_packages
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.txt'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = "pyxid2",
version = "1.0.9",
packages = find_packages(),
install_requires = ["ftd2xx>=1.3.8"],
author = "Eugene Matsak",
author_email = "developers@cedrus.com",
maintainer = "Cedrus Corporation",
maintainer_email = "developers@cedrus.com",
description = ("Python library for interfacing with Cedrus XID devices, e.g. StimTracker, Riponda, RB-x40, c-pod, and Lumina."),
long_description = long_description,
long_description_content_type='text/markdown',
license = "BSD",
keywords = "cedrus xid XID stimulus response data collection",
url = "http://www.github.com/cedrus-opensource/pyxid/",
classifiers = [
"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",
]
)