-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (51 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
61 lines (51 loc) · 1.32 KB
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
[project]
name = "synthorus"
version = "1.1.2"
description = "A Python package for synthetic data generation."
readme = "README.md"
license = "MIT"
license-files = ["LICEN[CS]E*"]
authors = [
{name = "Barry Drake", email ="barry@synthorus.org"},
]
requires-python = ">= 3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"compiled-knowledge",
"pandas",
"pyarrow",
"pyodbc",
"psycopg",
"psycopg-binary",
"xlsxwriter",
"pydantic",
]
# [doc_extra]
# version_note = "This is a public pre-release version. The API is not guaranteed stable."
[project.urls]
Homepage = "https://github.com/ropeless/synthorus"
Issues = "https://github.com/ropeless/synthorus/issues"
[tool.poetry]
package-mode = false # only using poetry for dependency management
[tool.poetry.dependencies.compiled-knowledge]
allow-prereleases = false
[tool.poetry.group.dev.dependencies]
jupyter = "*"
setuptools = "*"
build = "*"
jupyter-book = "<2.0.0"
sphinx = "*"
twine = "*"
toml = "*"
[tool.poetry.group.test.dependencies]
coverage = "*"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"synthorus_demos.demo_files" = ["datasets/*.*", "datasets/*/*.*"]