-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (33 loc) · 1004 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
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "DataBUS"
version = "0.1.0"
description = "Upload dataset records to the Neotoma Database"
authors = [{name = "Socorro E Dominguez Vidana", email = "[email protected]"}]
dependencies = [
"numpy==1.25.0",
"pandas==2.0.2",
"psycopg2-binary==2.9.6",
"python-dateutil==2.8.2",
"python-dotenv==1.0.0",
"pytz==2023.3",
"PyYAML==6.0",
"six==1.16.0",
"tzdata==2023.3",
"openpyxl",
"requests"
]
requires-python = ">=3.7"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"DataBUS" = ["sqlHelpers/upsert_site.sql",
"sqlHelpers/insert_pb_model.sql",
"sqlHelpers/insert_data_uncertainty.sql",
"sqlHelpers/insert_taxa_row.sql",
"sqlHelpers/upsert_collunit.sql"]
[project.optional-dependencies]
build = ["build", "twine"]
dev = ["black", "bumpver", "isort", "mypy", "pytest"]