-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
58 lines (50 loc) · 1.73 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os
from setuptools import find_packages
from setuptools import setup
pypi_name = "nisyscfg"
def read_contents(file_to_read):
with open(file_to_read, "r") as f:
return f.read()
def get_version():
script_dir = os.path.dirname(os.path.realpath(__file__))
version_path = os.path.join(script_dir, pypi_name, "VERSION")
return read_contents(version_path).strip()
setup(
name=pypi_name,
zip_safe=True,
version=get_version(),
description="NI System Configuration Python API",
long_description=read_contents("README.rst"),
long_description_content_type="text/x-rst",
author="National Instruments",
url="https://github.com/tkrebes/nisyscfg-python",
maintainer="Tyler Krehbiel",
maintainer_email="tyler.krehbiel@ni.com",
keywords=[pypi_name, "syscfg"],
license="MIT",
include_package_data=True,
packages=find_packages(),
python_requires=">=3.7",
install_requires=[
"hightime",
"six",
],
tests_require=["pytest"],
classifiers=[
"Development Status :: 1 - Planning",
"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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Hardware :: Hardware Drivers",
],
package_data={pypi_name: ["VERSION"]},
)