Skip to content

Commit e6f6c12

Browse files
committed
Don't mention license twice (#30)
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)
1 parent ed8d3f4 commit e6f6c12

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ name = 'simplefractions'
77
description = 'Find the simplest fraction for a given float or interval'
88
readme = 'README.md'
99
requires-python = '>=3.6'
10-
license = {file = 'LICENSE'}
11-
authors = [
12-
{name = 'Mark Dickinson', email = 'dickinsm@gmail.com'}
13-
]
10+
authors = [{name = 'Mark Dickinson', email = 'dickinsm@gmail.com'}]
1411
keywords = ['fractions', 'continued fractions', 'approximation']
1512
classifiers = [
1613
'License :: OSI Approved :: Apache Software License',

0 commit comments

Comments
 (0)