Skip to content

Commit

Permalink
Merge pull request #130 from CybercentreCanada/bugfix/duplicate_name_…
Browse files Browse the repository at this point in the history
…hashes

Make sure requirements is in sync with setup.py
  • Loading branch information
cccs-rs authored Jan 19, 2024
2 parents 1d80262 + 41547e7 commit 730f000
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()

# read the contents of your requirements file
with open(os.path.join(this_directory, "requirements.txt"), encoding="utf-8") as f:
requirements = f.read().split()

setup(
name="assemblyline-service-utilities",
version=package_version,
Expand All @@ -39,15 +43,7 @@
"test/*",
]
),
install_requires=[
"assemblyline",
"assemblyline-v4-service",
"cart",
"fuzzywuzzy",
"pefile",
"pillow",
"regex",
],
install_requires=requirements,
extra_requires={},
package_data={
"": [
Expand Down

0 comments on commit 730f000

Please sign in to comment.