diff --git a/README.md b/README.md index a5473cb..622805e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Current documentation for this package available via our [Read The Docs website] ### License ### -Kaipy is distributed under the [BSD 3-Clause license](LICENSE.md). +Kaipy is distributed under the [BSD 3-Clause license](https://bitbucket.org/aplkaiju/kaipy/src/master/LICENSE.md). ### What is this repository for? ### @@ -24,7 +24,6 @@ pip from [https://pypi.org/project/kaipy/](PyPi). ### How do I get set up? ### -* Install python verison 3.8. * ```pip install kaipy```. diff --git a/pyproject.toml b/pyproject.toml index f6e2d95..c4868b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,15 +7,15 @@ include-package-data = true [project] name = "kaipy" -version = "1.0.0" +version = "1.0.5" authors = [ {name = "Eric Winter", email = "eric.winter@jhuapl.edu"}, ] -description = "Python software for CGS MAGE" +description = "Python software for CGS MAGE and other Kaiu models" readme = "README.md" -requires-python = ">=3.8, <=3.10" +requires-python = ">=3.8,<=3.10" keywords = ["CGS", "MAGE", "KAIJU"] -license = {text = "MIT"} +license = {text = "BSD 3-Clause"} classifiers = [ "Programming Language :: Python :: 3", ] diff --git a/setup.py b/setup.py index 9d5df5a..69f958b 100644 --- a/setup.py +++ b/setup.py @@ -2,17 +2,17 @@ from setuptools import setup, find_packages setup( name='kaipy', - version='1.0.0', - description='Python package for supporting the running and analysis of the Mutliscale Atmosphere Geospace Environment (MAGE) Model developed by the Center for Geospace Storms.', - author='Center for Geospace Storms', + version='1.0.5', + description='Python software for CGS MAGE and other Kaiju models', + author='Kaiju team', author_email='wiltbemj@ucar.edu', url='https://bitbucket.org/aplkaiju/kaipy/src/master/', packages=find_packages(), - python_requires='>=3.8, <3.10', + python_requires='>=3.8,<=3.10', install_requires=[ 'alive_progress', 'astropy', - #'cartopy', + # 'cartopy', 'cdasws', 'configparser', 'h5py', @@ -31,10 +31,10 @@ setup( classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', - 'License :: OSI Approved :: MIT License', + 'License :: OSI Approved :: BSD 3-Clause', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ], -) \ No newline at end of file +)