Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ufl-taeber committed Feb 19, 2016
2 parents 3a02d30 + 5a67c7c commit 3080134
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# Use of this source code is governed by the license found in the LICENSE file.
###############################################################################

from setuptools import setup
from setuptools import setup, find_packages

VERSION="0.1.3"
VERSION="0.1.4"

setup(
name="nacculator",
Expand All @@ -16,12 +16,14 @@
maintainer="UF CTS-IT",
maintainer_email="[email protected]",
url="https://github.com/ctsit/nacculator",
license=open('LICENSE').read(),
license="BSD 2-Clause",
description="CSV to NACC's UDS3 format converter",
keywords=["REDCap", "NACC", "UDS", "Clinical data"],
download_url="https://github.com/ctsit/nacculator/releases/tag/" + VERSION,

packages=["nacc"],
package_dir = {'nacc': 'nacc'},
packages = find_packages(),

entry_points={
"console_scripts": [
"redcap2nacc = nacc.redcap2nacc:main"
Expand Down

0 comments on commit 3080134

Please sign in to comment.