Skip to content

Commit

Permalink
Requirements file parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
P-T-I committed Dec 20, 2020
1 parent 4695ecf commit 824d048
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
with open(os.path.join(HERE, "README.rst")) as fid:
README = fid.read().split("##INCLUDE_MARKER##")[1]

with open(os.path.join(HERE, "requirements.txt")) as fid:
REQS = fid.read().splitlines()

setup(
name="CveXplore",
version=VERSION,
Expand All @@ -28,13 +31,12 @@
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=["setuptools", "pymongo", "requests"],
install_requires=REQS,
)

0 comments on commit 824d048

Please sign in to comment.