X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=64fadf760314c2d891bb41e19a0d0190c73e97c2;hb=e22d3e4c1dc19d68b8dd567d1268c920109ad9bc;hp=adea67f89cf2e47858c390e1cec520b94800e1e9;hpb=c2ca299be7f2663544d4d3ebd85ee19b5011b190;p=osm%2FN2VC.git diff --git a/setup.py b/setup.py index adea67f..64fadf7 100644 --- a/setup.py +++ b/setup.py @@ -12,20 +12,29 @@ # See the License for the specific language governing permissions and # limitations under the License. - +from pathlib import Path from setuptools import setup, find_packages +here = Path(__file__).absolute().parent +readme = here / 'docs' / 'readme.rst' setup( name='juju', version="0.0.1", packages=find_packages( exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), - install_requires=[], + install_requires=[ + 'websockets', + 'pyyaml', + 'theblues', + 'python-dateutil' + ], include_package_data=True, maintainer='Juju Ecosystem Engineering', - maintainer_email='juju@lists.ubunut.com', + maintainer_email='juju@lists.ubuntu.com', description=('Python library for Juju'), + long_description=readme.read_text(), + url='https://github.com/juju/python-libjuju', license='Apache 2', classifiers=[ "Development Status :: 3 - Alpha",