X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=df12cfed2c24c76029ae5f66d782bb9917f07f47;hb=refs%2Ftags%2F0.4.0;hp=507f34434db1a07b915e6985b934382c96ddd4e7;hpb=fd2a74a2eba716e7ea298fe420f070221ff4581f;p=osm%2FN2VC.git diff --git a/setup.py b/setup.py index 507f344..df12cfe 100644 --- a/setup.py +++ b/setup.py @@ -12,24 +12,35 @@ # 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' +changelog = here / 'docs' / 'changelog.rst' +long_description = '{}\n\n{}'.format( + readme.read_text(), + changelog.read_text() +) +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=[ '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=long_description, + url='https://github.com/juju/python-libjuju', license='Apache 2', classifiers=[ "Development Status :: 3 - Alpha",