-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
64 lines (57 loc) · 1.99 KB
/
Pipfile
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
# py4j is needed for connecting to the JVM
py4j="==0.10.9.7" # https://spark.apache.org/docs/latest/api/python/getting_started/install.html#dependencies
# pyspark is needed for working with Spark
pyspark="==3.5.1" # should match the version of spark we use for testing
sparkautomapper = ">=3.0.1"
sparkfhirschemas = ">=2.0.2"
deprecated = "*"
[dev-packages]
# setuptools is needed for building the package
setuptools=">=72.1.0"
packaging=">=24.1"
# wheel is needed for building the package
wheel = ">=0.43.0"
twine=">=5.1.1"
# pre-commit is needed for running code quality checks
pre-commit=">=3.7.1"
# autoflake is needed for removing unused imports
autoflake=">=2.3.1"
# mypy is needed for type checking
mypy = ">=1.11.1"
# pytest is needed for running tests
pytest = ">=8.2.2"
# black is needed for formatting code
black = ">=24.4.2"
# importlib-metadata is needed for working with metadata
importlib-metadata = ">=5.2.0"
# Sphinx is needed for generating documentation
Sphinx="==4.1.2"
# sphinx-autoapi is needed for generating API documentation
sphinx-autoapi="==2.0.0"
# sphinx-rtd-theme is needed for the Read the Docs theme
sphinx-rtd-theme="==1.0.0"
# myst-parser is needed for parsing Markdown
myst-parser="==0.17.2"
xmlschema=">=1.6.4"
jinja2=">=3.0.3"
pycln=">=2.4.0"
lxml = ">=4.6.3"
sparkdataframecomparer = "==2.0.6"
# These dependencies are required for pipenv-setup. They conflict with ones above, so we install these
# only when running pipenv-setup
[pipenvsetup]
# vistr is needed for visualizing the dependency graph
vistir=">=0.6.1, <0.7.0" # https://github.com/Madoshakalaka/pipenv-setup/issues/138
# plete is needed for tab completion
plette = "<1.0.0" # https://github.com/Madoshakalaka/pipenv-setup/issues/138
# pipenv-setup is needed for updating setup.py with the dependencies for anyone installing this package
pipenv-setup = ">=3.2.0"
[requires]
python_version = "3.12"
[pipenv]
allow_prereleases = false