Skip to content

Commit

Permalink
Remove unnecessary changes in _distutils/dist
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Oct 31, 2024
1 parent 2c776c5 commit 390b95f
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions setuptools/_distutils/dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,6 @@ def __init__(self, path=None):
self.maintainer_email = None
self.url = None
self.license = None
self.license_expression = None
self.description = None
self.long_description = None
self.keywords = None
Expand Down Expand Up @@ -1090,7 +1089,6 @@ def _read_list(name):
self.maintainer_email = None
self.url = _read_field('home-page')
self.license = _read_field('license')
self.license_expression = _read_field('license-expression')

if 'download-url' in msg:
self.download_url = _read_field('download-url')
Expand Down Expand Up @@ -1223,11 +1221,6 @@ def get_license(self):

get_licence = get_license

def get_license_expression(self):
return self.license_expression

get_license_expression = get_license_expression

def get_description(self):
return self.description

Expand Down

0 comments on commit 390b95f

Please sign in to comment.