-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (44 loc) · 1.32 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
from setuptools import find_packages, setup
setup(
name='lib360dataquality',
version='0.0.1',
author='Open Data Services',
author_email='[email protected]',
url='https://github.com/threesixtygiving/dataquality',
description='A data review library for the ThreeSixtyGiving data standard',
license='AGPLv3',
packages=find_packages(include=['lib360dataquality*']),
long_description="A variety of library functions to asses the quality of data that is formatted in the ThreeSixtyGiving data standard",
install_requires=[
'libcove>=0.18.0',
'python-dateutil',
'rangedict',
'ijson',
'jsonschema<4',
'json-merge-patch',
],
extras_require={
'perf': [
'orjson>=3',
],
'test': [
'coveralls',
'pytest',
'pytest-cov',
'isort',
],
},
scripts=[
"tools/aggregates.py",
"tools/check_grantnav_assumptions.py",
"tools/cove_checks.py",
"tools/coverage360.py",
"tools/report.py",
"tools/generate-reports.sh",
"tools/deploy.sh",
],
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python :: 3.6',
],
)