-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (30 loc) · 1.14 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
29
30
31
32
33
34
35
36
#!/usr/bin/env python
import setuptools
version_string = '4.5.6a4'
setuptools.setup(
name = 'pyOKFrontPanel',
license = 'MIT',
version = version_string,
author = 'Qudi developers',
author_email = '[email protected]',
url = 'https://github.com/Ulm-IQO/pyOKFrontPanel',
download_url = 'https://github.com/Ulm-IQO/pyOKFrontPanel/archive/v{0}.tar.gz'.format(version_string),
description = 'Python CFFI wrapper for the Opal Kelly FrontPanel FPGA interface',
keywords = 'Opal Kelly FPGA FrontPanel',
packages = setuptools.find_packages(),
setup_requires = ["cffi>=1.0.0"],
cffi_modules = ["okfrontpanel/wrapper_build.py:ffibuilder"],
install_requires= ["cffi>=1.0.0"],
zip_safe = False,
package_data = {
'' : ['*.txt', '*.rst', '*.md'],
},
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
],
)