CI: Add SonarCloud scan GHA workflow
[pti/o2.git] / mock_smo / setup.py
1 from setuptools import setup
2 from setuptools import find_packages
3
4 setup(
5     name="mock_smo",
6     version="1.0",
7     packages=find_packages(),
8     license="LICENSE",
9     description="Mock SMO server for O2 IMS and DMS",
10     install_requires=[
11         'httplib2',
12     ]
13 )