Skip to content

Commit

Permalink
Move requirements to txt file
Browse files Browse the repository at this point in the history
  • Loading branch information
MCFlowMace committed Aug 10, 2023
1 parent 64c33df commit a8b3dac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
numpy
scipy>=1.9
matplotlib
uproot
dill>=0.3.7
9 changes: 2 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,8 @@
with open("README.md", "r") as fh:
long_description = fh.read()

required = [
"numpy",
"scipy>=1.9",
"matplotlib",
"uproot",
"dill>=0.3.7"
]
with open("requirements.txt", "r") as fh:
required = [line.strip() for line in fh]

setuptools.setup(
name="cresana",
Expand Down

0 comments on commit a8b3dac

Please sign in to comment.