Skip to content

Commit

Permalink
Correct author-email declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
durack1 committed Mar 13, 2019
1 parent d775cb9 commit 148ed21
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
from setuptools import setup

# Set package version
Version="1.1.2"
Version='1.1.2'

# Call setup function - see https://setuptools.readthedocs.io/en/latest/setuptools.html#adding-setup-arguments
setup(
name = "durolib",
author = "Paul J. Durack",
author-email = "durack1@llnl.gov",
name = 'durolib',
author = 'Paul J. Durack',
author_email = 'durack1@llnl.gov',
data_files = [('share/durolib/data',['data/CMIP5BranchTimes.json',
'data/CMIP5BranchTimes.pickle'])],
description = "Python utilities for climate",
description = 'Python utilities for climate',
packages = ['durolib'],
url = "http://github.com/durack1/durolib",
version=Version,
url = 'http://github.com/durack1/durolib',
version = Version,
)

# package_dir = {'durolib': 'lib'},
Expand Down

0 comments on commit 148ed21

Please sign in to comment.