Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasJohansson committed Apr 10, 2021
1 parent c917224 commit 47c6605
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
8 changes: 6 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 1.0.0
commit = True
tag = True

Expand Down
15 changes: 9 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,32 @@
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,
license="MIT license",
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,
)
2 changes: 1 addition & 1 deletion sweden_crs_transformations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

__author__ = """Tomas Johansson"""
__email__ = 'pypi@programmerare.com'
__version__ = '0.1.0'
__version__ = '1.0.0'

0 comments on commit 47c6605

Please sign in to comment.