Commit fd7457e3 authored by Thomas Gambier's avatar Thomas Gambier 🚴🏼

make this a true egg

parent c2606b4c
from setuptools import setup, find_packages
import glob
import os
version = '0.126'
name = 'open-radio-e2e-testing'
description = 'End to end testing of open radio software reelease'
long_description = open("README.md").read() + "\n"
setup(name=name,
version=version,
description=description,
long_description=long_description,
classifiers=[
"Programming Language :: Python",
],
keywords='open radio openradio test',
license='GPLv3',
maintainer="RapidSpace",
maintainer_email="info@rapid.space",
packages = find_packages(),
url="https://lab.nexedi.com/nexedi/open-radio-e2e-testing",
install_requires=(
'websocket-client',
'pytest',
),
)
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