-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (54 loc) · 1.77 KB
/
setup.py
File metadata and controls
62 lines (54 loc) · 1.77 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
56
57
58
59
60
61
62
#!/usr/bin/python
# This file was generated
from setuptools import setup
pypi_name = 'nidcpower'
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.5.1.dev0',
description='NI-DCPower 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=['nidcpower'],
license='MIT',
include_package_data=True,
packages=['nidcpower'],
python_requires='>=3.10',
install_requires=[
'hightime>=0.2.0',
],
extras_require={
'grpc': [
'grpcio>=1.59.0,<2.0',
'protobuf>=4.21.6',
'ni.grpcdevice.v1.proto>=1.0.0'
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"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 :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Instrument Drivers",
"Topic :: System :: Hardware :: Hardware Drivers"
],
package_data={pypi_name: ['VERSION']},
)