forked from ctsit/redi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (49 loc) · 1.38 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
"""
RED-I Setup
Please read the documentation in README.md!
Quick install:
$ make egg
$ sudo easy_install dist/REDI*.egg
Prerequisites on Debian Wheezy:
apt-get install python-setuptools python-dev libxml2 libxslt1-dev
"""
from setuptools import setup, find_packages
setup(
name='redi-py',
version='0.13.0',
author='https://www.ctsi.ufl.edu/research/study-development/informatics-consulting/',
author_email='[email protected]',
packages=find_packages(exclude=['test']),
include_package_data=True,
package_data={
'redi': ['utils/*.xsl', 'utils/*.xsd'],
'redi': ['README.md'],
},
url='https://github.com/ctsit/redi',
download_url = 'https://github.com/ctsit/redi/releases/tag/0.13.0',
keywords = ['EMR', 'EHR', 'REDCap', 'Clinical Data'],
license='BSD 3-Clause',
description='REDCap Electronic Data Importer',
long_description=open('README.md').read(),
install_requires=[
"requests >= 2.2.1",
"lxml >= 3.3.5",
"PyCap >= 1.0",
"pysftp >= 0.2.8",
"docopt >= 0.6.2",
],
entry_points={
'console_scripts': [
'redi = redi.redi:main',
],
},
test_suite='test.TestSuite',
tests_require=[
"mock >= 1.0",
"sftpserver >= 0.2",
],
setup_requires=[
"nose >= 1.0",
"nosexcover >= 1.0.10",
],
)