-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
41 lines (34 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
###############################################################################
# Copyright 2015-2020 University of Florida. All rights reserved.
# This file is part of UF CTS-IT's NACCulator project.
# Use of this source code is governed by the license found in the LICENSE file.
###############################################################################
from setuptools import setup, find_packages
VERSION = "1.14.0"
setup(
name="nacculator",
version=VERSION,
author="Taeber Rapczak",
author_email="[email protected]",
maintainer="UF CTS-IT",
maintainer_email="[email protected]",
url="https://github.com/ctsit/nacculator",
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,
package_dir={'nacc': 'nacc'},
packages=find_packages(),
entry_points={
"console_scripts": [
"redcap2nacc = nacc.redcap2nacc:main",
"nacculator_filters = nacc.run_filters:main"
]
},
install_requires=[
"PyCap>=2.1.0",
"pandas>=2.2.0",
"report_handler @ git+https://[email protected]:/ctsit/[email protected]"
],
python_requires=">=3.6.0",
)