-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 loc) · 1.02 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
from setuptools import setup
from setuptools.command.develop import develop
from setuptools.command.install import install
install_requires = [
"click",
"pandas",
"fabric",
"requests",
"polars",
"duckdb<0.7",
"alembic",
"orjson",
"sqlalchemy",
"psycopg2-binary",
"codetiming",
"openpyxl",
"boto3",
"fastavro",
"google-cloud-bigquery < 3",
"google-api-python-client",
"retry",
"jsonref",
"ipython",
"flatterer",
"Werkzeug<3",
"frozen-flask",
"bootstrap-flask",
"markdown",
"datasette",
"humanize",
"rich"
]
setup(
name="bodsdata",
version="0.1",
author="Open Ownership",
author_email="[email protected]",
py_modules=['bodsdata', 'consistency_checks'],
packages=['bodsdataweb'],
package_data={'bodsdataweb': ['templates/*', 'static/*']},
url="https://github.com/openownership/bodsdata",
license="MIT",
description="Tools for analysing bods data",
install_requires=install_requires,
)