-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
60 lines (52 loc) · 1.41 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/mawpy/version.py"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[project]
name = "MAWpy"
dynamic = ["version"]
requires-python = ">=3.11"
dependencies = [
"pandas>=2.1.0",
"scikit-learn>=1.3.0",
"geopy>=2.4.1",
"fsspec>=2024.6.1,<2024.7",
"openpyxl>=3.1.5,<3.2",
"psutil>=5.9.8",
]
description = "Mobility Analysis Workflow in Python"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.license]
file = "LICENSE"
[project.optional-dependencies]
dev = [
"pytest>=8.1.1",
"pytest-cov>=5.0.0",
"pre-commit>=3.6.1",
"nox>=2024.3.2",
"hypothesis>=6.108.2,<6.109",
]
docs = [
"jupyter-book",
]
[project.scripts]
ic_usd = "mawpy.workflows.ic_usd:main"
tsc_usd = "mawpy.workflows.tsc_usd:main"
tsc_ic_usd = "mawpy.workflows.tsc_ic_usd:main"
ao_ic_usd = "mawpy.workflows.ao_ic_usd:main"
ic_usd_ao_usd = "mawpy.workflows.ic_usd_ao_usd:main"