X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=47b9d0e542795a771db3eb8aab6c186ce5b5d597;hb=19077c2754a4296a87a80679e876e67cfed57c5c;hp=de262e4d66fbbb29be14080824a332db9bb842a5;hpb=5ad9b9d20df199802417d1a5480942afeccbf119;p=osm%2FN2VC.git diff --git a/setup.py b/setup.py index de262e4..47b9d0e 100644 --- a/setup.py +++ b/setup.py @@ -12,13 +12,16 @@ # 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' +version = here / 'VERSION' setup( name='juju', - version="0.0.1", + version=version.read_text().strip(), packages=find_packages( exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), install_requires=[ @@ -31,6 +34,7 @@ setup( maintainer='Juju Ecosystem Engineering', 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=[