forked from ctsit/redi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (46 loc) · 1.21 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
"""
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',
version='0.11.2',
author='Christopher P Barnes, Philip Chase, Nicholas Rejack',
author_email='cpb@ufl.edu, pbc@ufl.edu, nrejack@ufl.edu',
packages=find_packages(exclude=['test']),
include_package_data=True,
package_data={
'bin': ['utils/*.xsl', 'utils/*.xsd'],
'redi': ['README.md'],
'db': ['Makefile']
},
url='http://it.ctsi.ufl.edu/about/',
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",
],
entry_points={
'console_scripts': [
'redi = bin.redi:main',
],
},
test_suite='test.TestSuite',
tests_require=[
"mock >= 1.0",
],
setup_requires=[
"nose >= 1.0",
"nosexcover >= 1.0.10",
],
)