Commit 7d999d4a authored by James Kirk's avatar James Kirk
Browse files

feat: added setup.py for the ci

parent 98c215db
Pipeline #112292 failed with stages
in 21 seconds
#!/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,
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment