Skip to content

Commit 1cfe9bd

Browse files
committed
added requirements to setup.py
1 parent d5b68d9 commit 1cfe9bd

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ macaroonbakery==1.3.1
6161
# markdown-it-py==2.1.0
6262
# MarkupSafe==2.1.2
6363
# mdurl==0.1.2
64-
middleware-apm==0.1.23
64+
# middleware-apm==0.1.23
6565
monotonic==1.5
6666
# more-itertools==4.2.0
6767
msgpack==1.0.4

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
import setuptools
22

3+
with open("requirements.txt", "r") as f:
4+
requirements = f.read().splitlines()
5+
6+
37
setuptools.setup(
48

59
name="middleware-apm",
6-
version="0.1.27",
7-
10+
version="0.1.29",
11+
install_requires=requirements,
812
author="middleware-dev",
913
description="This package is use to check the RAM and CPU Usage of Current Device.",
1014
long_description=open('README.md').read(),

0 commit comments

Comments
 (0)