Skip to content

Commit

Permalink
Don't mention license twice (#30)
Browse files Browse the repository at this point in the history
The use of license = {file = 'LICENSE'} results in significant ugliness in the sidebar on PyPI. We don't appear to need it, since the license is already specified in the trove classifiers. This PR removes that entry from the pyproject.toml (and also does a drive-by cleanup of the authors field).

(cherry picked from commit df42c43)
  • Loading branch information
mdickinson committed Aug 21, 2022
1 parent ed8d3f4 commit e6f6c12
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ name = 'simplefractions'
description = 'Find the simplest fraction for a given float or interval'
readme = 'README.md'
requires-python = '>=3.6'
license = {file = 'LICENSE'}
authors = [
{name = 'Mark Dickinson', email = '[email protected]'}
]
authors = [{name = 'Mark Dickinson', email = '[email protected]'}]
keywords = ['fractions', 'continued fractions', 'approximation']
classifiers = [
'License :: OSI Approved :: Apache Software License',
Expand Down

0 comments on commit e6f6c12

Please sign in to comment.