We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c37b197 commit 3cf3e0dCopy full SHA for 3cf3e0d
JciHitachi/__init__.py
@@ -1,2 +1,2 @@
1
__author__ = "Allan Lin"
2
-__version__ = "1.6.1"
+__version__ = "1.6.2"
MANIFEST.in
@@ -0,0 +1 @@
+include requirements.txt requirements_test.txt
setup.py
@@ -8,10 +8,6 @@
8
with open("requirements.txt", "r", encoding="utf-8") as f:
9
install_requires = f.read().split("\n")
10
11
-with open("requirements_test.txt", "r", encoding="utf-8") as f:
12
- tests_require = f.read().split("\n")
13
-
14
15
if __name__ == "__main__":
16
setuptools.setup(
17
name="LibJciHitachi",
@@ -38,5 +34,4 @@
38
34
package_data={"JciHitachi": ["cert/*.pem"]},
39
35
python_requires=">=3.10",
40
36
install_requires=install_requires,
41
- tests_require=tests_require,
42
37
)
0 commit comments