-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
32 lines (28 loc) · 995 Bytes
/
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
# Documentation on setuptools & pyproject.toml - https://setuptools.pypa.io/en/latest/userguide/index.html
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "passyunk"
version = "2.23.0"
description = "Address parser for City of Philadelphia addresses"
readme = "README.md"
authors = [
{name = "Tom Swanson"},
{name = "James Midkiff", email = "[email protected]"}
]
requires-python = ">=3.7"
dependencies = [
'fuzzywuzzy>=0.11.1,<1.0',
'Levenshtein>=0.20,<1.0',
'requests>=2.28,<3.0',
'importlib-metadata>=6.0,<=7.0'
]
[project.optional-dependencies]
private = ["passyunk_automation @ git+ssh://[email protected]/CityOfPhiladelphia/passyunk_automation.git"]
# The following syntax works:
# pip install "passyunk[private] @ git+https://github.com/CityOfPhiladelphia/passyunk@<branch>"
[tool.setuptools.packages.find]
include = ["passyunk", "passyunk.pdata"]
[tool.setuptools.package-data]
"*" = ["*.csv"]