Skip to content

Commit 9c835c1

Browse files
committed
List deps in setup.py file
Signed-off-by: Ashish Bijlani <ashish.bijlani@gmail.com>
1 parent 429e3a1 commit 9c835c1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
long_description = open(os.path.join(here, "README.md")).read()
1818
long_description_content_type = 'text/markdown'
1919

20-
sandbox_ext = setuptools.extension.Extension('sandbox',
21-
sources = ['sandbox/sandbox.o'])
22-
2320
# this grabs the requirements from requirements.txt
2421
REQUIREMENTS = [i.strip().split('==')[0] for i in open(os.path.join(here, "requirements.txt")).readlines()]
2522

@@ -81,7 +78,7 @@ def run(self):
8178
data_files = [
8279
(os.path.expanduser(os.path.join('~','.packj')), ['packj/config.yaml']),
8380
],
84-
version = '0.8',
81+
version = '0.9',
8582
license='GNU AGPLv3',
8683
description = 'Packj flags "risky" open-source packages in your software supply chain',
8784
long_description=long_description,
@@ -96,6 +93,7 @@ def run(self):
9693
keywords = ['software supply chain', 'malware', 'typo-squatting', 'vulnerability', 'open-source software', 'software composition analysis'],
9794
python_requires=">=3.4",
9895
install_requires=REQUIREMENTS,
96+
requires_dist=REQUIREMENTS,
9997
entry_points = {
10098
'console_scripts': [
10199
'packj=packj.main:bin_wrapper',

0 commit comments

Comments
 (0)