forked from kobotoolbox/formpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 730 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
31
32
33
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
requirements = [
'begins',
'jsonschema',
'lxml',
'path.py',
'pyquery',
'pyxform',
'statistics',
'XlsxWriter',
'geojson-rewind',
]
dep_links = [
]
setup(
name='formpack',
version='3.0.0',
description='Manipulation tools for KoBo forms',
author='the formpack contributors (https://github.com/kobotoolbox/formpack/graphs/contributors)',
url='https://github.com/kobotoolbox/formpack/',
packages=[str(pkg) for pkg in find_packages('src')],
package_dir={'': 'src'},
install_requires=requirements,
dependency_links=dep_links,
include_package_data=True,
zip_safe=False,
)