Skip to content

Commit

Permalink
Fix: updates project to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyyxxyy committed Feb 6, 2023
1 parent 628e8c6 commit b31b249
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 94 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ if __name__ == '__main__':
- _0.4.0_:
- There are two new Classes, Kelvin and Delisle, functional and ready-to-use.

- **0.5.0**:
- **0.5.1**:
- The implementation has been **completely refactored**:

1 - ***All classes inhehits from `AbstractTemperature`** (our new abstract Base Class)*;
Expand Down
Binary file modified doc/requirements.txt
Binary file not shown.
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
author = 'Edson Pimenta, Dávilos Tavares and Raul Silva'

# The full version, including alpha/beta/rc tags
release = '0.5.0'
release = '0.5.1'

version = '0.5.0'
version = '0.5.1'


# -- General configuration ---------------------------------------------------
Expand Down
115 changes: 58 additions & 57 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,57 +1,58 @@
[tool.poetry]
name = "totemp"
version = "0.5.0"
description = "Temperature Converter"
license = "GPL-3.0-only"
authors = [
"Edson Pimenta <[email protected]>",
"Dávilos Tavares <[email protected]>",
"Raul Silva <[email protected]>"
]
maintainers = [
"Edson Pimenta <[email protected]>",
"Dávilos Tavares <[email protected]>",
"Raul Silva <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/eddyyxxyy/ToTemp"
keywords = [
"converter", "temperature", "celsius",
"kelvin", "fahrenheit", "rankine",
"delisle", "Newton", "Réaumur",
"Rømer"
]
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent'
]

[tool.poetry.dependencies]
python = "^3.10"

[tool.poetry.group.dev.dependencies]
blue = "^0.9.1"
isort = "^5.10.1"
pre-commit = "^2.20.0"
pytest = "^7.1.3"
pytest-coverage = "^0.0"
mypy = "^0.982"
sphinx = "^5.3.0"
numpydoc = "^1.5.0"
sphinx-autodoc-typehints = "^1.19.5"
sphinx-rtd-theme = "^1.1.1"
sphinxcontrib-prettyspecialmethods = "^0.1.0"

[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 79

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "totemp"
version = "0.5.1"
description = "Temperature Converter"
license = "GPL-3.0-only"
authors = [
"Edson Pimenta <[email protected]>",
"Dávilos Tavares <[email protected]>",
"Raul Silva <[email protected]>"
]
maintainers = [
"Edson Pimenta <[email protected]>",
"Dávilos Tavares <[email protected]>",
"Raul Silva <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/eddyyxxyy/ToTemp"
documentation = "https://totemp.readthedocs.io/en/latest/"
keywords = [
"converter", "temperature", "celsius",
"kelvin", "fahrenheit", "rankine",
"delisle", "Newton", "Réaumur",
"Rømer"
]
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent'
]

[tool.poetry.dependencies]
python = "^3.10"

[tool.poetry.group.dev.dependencies]
blue = "^0.9.1"
isort = "^5.10.1"
pre-commit = "^2.20.0"
pytest = "^7.1.3"
pytest-coverage = "^0.0"
mypy = "^0.982"
sphinx = "^5.3.0"
numpydoc = "^1.5.0"
sphinx-autodoc-typehints = "^1.19.5"
sphinx-rtd-theme = "^1.1.1"
sphinxcontrib-prettyspecialmethods = "^0.1.0"

[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 79

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
68 changes: 34 additions & 34 deletions totemp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from .temperature_types import (
Celsius,
Delisle,
Fahrenheit,
Kelvin,
Newton,
Rankine,
Reaumur,
Romer,
)

__author__ = 'Edson Pimenta, Raul Silva and Dávilos Tavares'
__credits__ = ['Edson Pimenta', 'Dávilos Tavares', 'Raul Silva']
__license__ = 'GPL-3.0'
__version__ = '0.5.0'
__maintainer__ = [
'Edson Pimenta <[email protected]>',
'Dávilos Tavares <[email protected]>',
'Raul Silva <[email protected]>',
]
__status__ = 'Development'
__all__ = [
'Celsius',
'Fahrenheit',
'Delisle',
'Kelvin',
'Newton',
'Rankine',
'Reaumur',
'Romer',
]
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from .temperature_types import (
Celsius,
Delisle,
Fahrenheit,
Kelvin,
Newton,
Rankine,
Reaumur,
Romer,
)

__author__ = 'Edson Pimenta, Raul Silva and Dávilos Tavares'
__credits__ = ['Edson Pimenta', 'Dávilos Tavares', 'Raul Silva']
__license__ = 'GPL-3.0'
__version__ = '0.5.1'
__maintainer__ = [
'Edson Pimenta <[email protected]>',
'Dávilos Tavares <[email protected]>',
'Raul Silva <[email protected]>',
]
__status__ = 'Development'
__all__ = [
'Celsius',
'Fahrenheit',
'Delisle',
'Kelvin',
'Newton',
'Rankine',
'Reaumur',
'Romer',
]

0 comments on commit b31b249

Please sign in to comment.