# HG changeset patch # User ioannis@ioannis-VirtualBox # Date 1620366870 -10800 # Node ID a41f71f80c1d481b5ae9af51cb32310881f463ec # Parent 33a1ebad3f7e69a44be4dcdcfa3a56d6d4b8a438 Updated setup, licence and other ancillary files. diff -r 33a1ebad3f7e -r a41f71f80c1d .hgignore --- a/.hgignore Thu May 06 17:29:49 2021 +0300 +++ b/.hgignore Fri May 07 08:54:30 2021 +0300 @@ -5,4 +5,5 @@ re:^settings\.py$ re:^\.idea/ scc_access.egg-info/ -re:^\.pytest_cache/ \ No newline at end of file +re:^\.pytest_cache/ +dist/ diff -r 33a1ebad3f7e -r a41f71f80c1d CHANGELOG.rst --- a/CHANGELOG.rst Thu May 06 17:29:49 2021 +0300 +++ b/CHANGELOG.rst Fri May 07 08:54:30 2021 +0300 @@ -1,5 +1,9 @@ Changelog ========= +0.10.4 - 2021-05-07 +------------------- +* Updated documentation and setup parameters. + 0.10.3 - 2021-05-06 ------------------- * Fixed bug when downloading measurement files. diff -r 33a1ebad3f7e -r a41f71f80c1d LICENCE.txt --- a/LICENCE.txt Thu May 06 17:29:49 2021 +0300 +++ b/LICENCE.txt Fri May 07 08:54:30 2021 +0300 @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2017, Ioannis Binietoglou, Victor Nicolae +Copyright (c) 2021, Ioannis Binietoglou, Victor Nicolae Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff -r 33a1ebad3f7e -r a41f71f80c1d README.rst --- a/README.rst Thu May 06 17:29:49 2021 +0300 +++ b/README.rst Fri May 07 08:54:30 2021 +0300 @@ -25,6 +25,10 @@ ------------ The easiest way to install this module is from the python package index using pip:: + + pip install scc-access + +Alternatively, you can install the latest version directly from the repository:: pip install hg+https://repositories.imaa.cnr.it/public/scc_access#egg=scc-access diff -r 33a1ebad3f7e -r a41f71f80c1d pyproject.toml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pyproject.toml Fri May 07 08:54:30 2021 +0300 @@ -0,0 +1,6 @@ +[build-system] +requires = [ + "setuptools>=42", + "wheel" +] +build-backend = "setuptools.build_meta" \ No newline at end of file diff -r 33a1ebad3f7e -r a41f71f80c1d scc_access/__init__.py --- a/scc_access/__init__.py Thu May 06 17:29:49 2021 +0300 +++ b/scc_access/__init__.py Fri May 07 08:54:30 2021 +0300 @@ -1,1 +1,1 @@ -__version__ = "0.10.3" \ No newline at end of file +__version__ = "0.10.4" \ No newline at end of file diff -r 33a1ebad3f7e -r a41f71f80c1d setup.py --- a/setup.py Thu May 06 17:29:49 2021 +0300 +++ b/setup.py Fri May 07 08:54:30 2021 +0300 @@ -33,16 +33,16 @@ setup(name='scc_access', packages=['scc_access'], version=find_version("scc_access", "__init__.py"), - description='Package for interacting with the Single Calculus Chain through the command line.', + description="Package for interacting with EARLINET's Single Calculus Chain through the command line.", long_description=long_description, - url='https://bitbucket.org/iannis_b/scc-access/', + url='https://repositories.imaa.cnr.it/public/scc_access/', author='Ioannis Binietoglou', author_email='ioannis@inoe.ro', license='MIT', classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: Atmospheric Science', ],