forked from ni/nimi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (47 loc) · 1.56 KB
/
setup.py
File metadata and controls
55 lines (47 loc) · 1.56 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/python
# This file was generated
from setuptools import setup
pypi_name = 'nirfsg'
def read_contents(file_to_read):
with open(file_to_read, 'r') as f:
return f.read()
setup(
name=pypi_name,
zip_safe=True,
version='1.0.1',
description='NI-RFSG Python API',
long_description=read_contents('README.rst'),
long_description_content_type='text/x-rst',
author='NI',
author_email="opensource@ni.com",
url="https://github.com/ni/nimi-python",
maintainer="NI",
maintainer_email="opensource@ni.com",
keywords=['nirfsg'],
license='MIT',
include_package_data=True,
packages=['nirfsg'],
python_requires='>=3.10',
install_requires=[
'hightime>=0.2.0',
'nitclk',
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Instrument Drivers",
"Topic :: System :: Hardware :: Hardware Drivers"
],
package_data={pypi_name: ['VERSION']},
)