-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 867 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "data_demand_mapper"
version = "0.2.5" # bump to 0.1.1 for republishing
description = "A package for identifying and scoring third-party data buyers in U.S. federal job postings from USAJobs."
readme = "data_demand_mapper/README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Rory G. Quinlan"},
]
dependencies = [
"pandas",
"numpy",
"scikit-learn",
"nltk",
"requests",
"rapidfuzz",
"joblib",
]
[project.urls]
"Homepage" = "https://github.com/RoryQo/Public-Sector-Data-Demand_Research-Framework-For-Market-Analysis-And-Classification"
[tool.setuptools.packages.find]
where = ["."]
include = ["data_demand_mapper", "data_demand_mapper.*"]
[tool.setuptools.package-data]
"data_buyer_toolkit" = ["*.joblib"]