Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Communications Backbone System
communications-backbone
Commits
7d999d4a
Commit
7d999d4a
authored
2 years ago
by
James Kirk
Browse files
Options
Download
Email Patches
Plain Diff
feat: added setup.py for the ci
parent
98c215db
Pipeline
#112292
failed with stages
in 21 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
setup.py
setup.py
+19
-0
No files found.
setup.py
0 → 100644
View file @
7d999d4a
#!/usr/bin/env python
from
setuptools
import
setup
,
find_packages
requirements
=
[
x
.
strip
()
for
x
in
open
(
'requirements.txt'
,
'r'
)
if
x
.
strip
()
!=
''
]
setup
(
name
=
"communications-backbone"
,
version
=
"0.0.1"
,
description
=
"Communications backbone "
,
author
=
"NOC C2 Team"
,
author_email
=
"c2@noc.ac.uk"
,
packages
=
find_packages
(),
install_requires
=
requirements
,
include_package_data
=
True
,
zip_safe
=
False
,
)
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment