forked from XLSForm/pyxform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 793 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='pyxform',
version='0.9.22',
author='modilabs',
author_email='info@modilabs.org',
packages=find_packages(),
package_data={
'pyxform.odk_validate': [
'ODK_Validate.jar',
],
'pyxform.tests': [
'example_xls/*.*',
'bug_example_xls/*.*',
'test_output/*.*',
'test_expected_output/*.*',
]
},
url='http://pypi.python.org/pypi/pyxform/',
description='A Python package to create XForms for ODK Collect.',
long_description=open('README.rst', 'rt').read(),
install_requires=[
'xlrd==0.9.4',
'lxml==3.5.0',
'unicodecsv==0.14.1',
],
use_2to3=True,
use_2to3_fixers=['fixers'],
)