From 47c6605c24318b62bb8f48791313cff9b85ae634 Mon Sep 17 00:00:00 2001 From: Tomas Johansson Date: Sat, 10 Apr 2021 18:41:22 +0200 Subject: [PATCH] Version 1.0.0 --- HISTORY.rst | 8 ++++++-- setup.cfg | 2 +- setup.py | 15 +++++++++------ sweden_crs_transformations/__init__.py | 2 +- 4 files changed, 17 insertions(+), 10 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 932ff32..dec7028 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,11 @@ History ======= -0.1.0 (2021-04-01) +1.0.0 (2021-04-10) ------------------ +* For Python versions 3.8+ -* First release on PyPI. + +0.9.0 (2021-04-10) +------------------ +* For Python versions 2.7 - 3.7 diff --git a/setup.cfg b/setup.cfg index 0cd5b35..824b0bb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 1.0.0 commit = True tag = True diff --git a/setup.py b/setup.py index e5740c8..e97ad5c 100644 --- a/setup.py +++ b/setup.py @@ -19,14 +19,17 @@ setup( author="Tomas Johansson", author_email='pypi@programmerare.com', - python_requires='>=3.9', + python_requires='>=3.8', classifiers=[ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', "Topic :: Scientific/Engineering :: GIS", + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Typing :: Typed', ], description="Python library for transformation of geographic coordinates between WGS84 and the Swedish coordinate reference systems SWEREF99 and RT90", install_requires=requirements, @@ -34,14 +37,14 @@ long_description=readme + '\n\n' + history, long_description_content_type='text/markdown', include_package_data=True, - keywords='sweden_crs_transformations', - name='sweden_crs_transformations-programmerare', # name at 'test.pypi.org' - # name='sweden_crs_transformations', # name at 'pypi.org' + keywords='WGS84, RT90, SWEREF99, SWEREF99TM, CRS, Coordinate Reference Systems', + # name='sweden_crs_transformations-programmerare', # name at 'test.pypi.org' + name='sweden_crs_transformations', # name at 'pypi.org' packages=find_packages(include=['sweden_crs_transformations', 'sweden_crs_transformations.*']), setup_requires=setup_requirements, test_suite='tests', tests_require=test_requirements, url='https://github.com/TomasJohansson/sweden_crs_transformations_4python', - version='0.1.0', + version='1.0.0', zip_safe=False, ) diff --git a/sweden_crs_transformations/__init__.py b/sweden_crs_transformations/__init__.py index dd9e722..5a8c241 100644 --- a/sweden_crs_transformations/__init__.py +++ b/sweden_crs_transformations/__init__.py @@ -3,4 +3,4 @@ __author__ = """Tomas Johansson""" __email__ = 'pypi@programmerare.com' -__version__ = '0.1.0' +__version__ = '1.0.0'