-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
62 lines (51 loc) · 2.29 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
###
# Pipenv Package Declarations.
# This file is what Pipenv commands build off of.
##
[[source]]
name = "pypi"
url = "https://pypi.python.org/simple"
verify_ssl = true
###
# Python version declaration.
##
[requires]
python_version = "3.11"
###
# General packages, installed via `pipenv sync`.
##
[packages]
# No required sub-dependencies at the moment.
###
# Development and testing packages, installed via `pipenv sync --dev`.
##
[dev-packages]
# Syntax-checking dependencies.
autopep8 = "*" # Auto-formats files for pep8 recommendations. See `setup.cfg` for our exceptions.
flake8 = "*" # Wrapper for autopep8 that allows extra configuration, etc.
# Testing/Pytest dependencies.
coverage = "*" # Outputs testing coverage data.
freezegun = "*" # Allows "freezing" tests to specific datetimes, for consistent checking and output.
pytest = "*" # Base Pytest package. Current preferred testing method.
pytest-xdist = "*" # Additional Pytest features, such as multithreading and looping.
# Docs build dependencies.
sphinx = "*" # Core package to build project docs.
sphinx-autobuild = "*" # Additional Sphinx logic to autobuild from project code documentation.
sphinx-rtd-theme = "*" # Additional Sphinx logic for building with standard ReadTheDocs theme.
# Project pypi dependencies.
build = "*" # For building packages according to PEP 517 standards (for PyPi deployment).
pip-tools = "*" # Management of Package dependencies and building.
twine = "*" # For pushing/publishing packages.
###
# Optional packages.
# Technically not supported by Pipfile, so they need manual installation.
# This section is mostly only present for reference.
#
# These are dependencies that this package can take advantage of, but are not required for use.
# When not present, certain functionality will be disabled, but the project as a whole should still be functional.
##
[optional-packages]
colorama = "*" # Console coloring package.
mysqlclient = "*" # For connecting to mysql.
psycopg2-binary = "*" # For connecting to PostgreSQL.
pytz = "*" # For datetime shenanigans.