Skip to content

Commit df42c43

Browse files
authored
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).
1 parent ed8d3f4 commit df42c43

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

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 = '[email protected]'}
13-
]
10+
authors = [{name = 'Mark Dickinson', email = '[email protected]'}]
1411
keywords = ['fractions', 'continued fractions', 'approximation']
1512
classifiers = [
1613
'License :: OSI Approved :: Apache Software License',

0 commit comments

Comments
 (0)