Skip to content

Commit

Permalink
More from codemeta
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorrell committed Mar 20, 2019
1 parent 9da0f67 commit 929d7c2
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ def read_requirements():
author_email = email
else:
author_email = author_email + ", " + email
description = meta['description']
url = meta['codeRepository']
download = meta['downloadUrl']
license = meta['license']
name = meta['name']

# Setup for our Go based executable as a "data_file".
platform = sys.platform
Expand All @@ -64,14 +69,14 @@ def read_requirements():
shutil.copy(exec_path,'epxml_support/.')

setup(
name = 'epxml_to_datacite',
name = name,
version = version,
description = "Convert Eprints XML to DataCite XML ato Mint DOIs",
description = description,
author = author,
author_email = author_email,
url = "https://caltechlibrary.github.io/epxml_to_datacite",
download_url = "https://github.com/caltechlibrary/epxml_to_datacite/latest/releases",
license = meta["license"],
url = url,
download_url = download,
license = license,
packages=find_packages(),
py_modules = ["caltech_thesis","caltech_authors_tech_report"],
data_files=[('.',['thesis-subjects.txt']),
Expand Down

0 comments on commit 929d7c2

Please sign in to comment.