-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 929 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 929 Bytes
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
required = [
"pandas>=0.25.3",
# "datapackage-pipelines==2.2.6",
# "datapackage-pipelines @ git+https://github.com/frictionlessdata/datapackage-pipelines.git@d78d1391adf6470ca484303e512e038f7dc57483",
"pyparsing==3.1.2",
"dataflows==0.5.5",
# "dataflows @ git+https://github.com/cschloer/dataflows.git@master",
# "tabulator==1.53.5",
"tabulator @ git+https://github.com/BCODMO/tabulator-py.git@main",
"goodtables==2.5.0",
"python-dateutil==2.8.2",
"redis==6.2.0",
"xlrd==1.2.0",
"pytz==2025.2",
]
setup(
name="bcodmo_frictionless",
version="v3.1.9",
description="BCODMO Custom Processors and Checks",
author="BCODMO",
author_email="conrad.schloer@gmail.com",
url="https://github.com/bcodmo/bcodmo_frictionless",
packages=find_packages(),
install_requires=required,
include_package_data=True,
)