-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
74 lines (68 loc) · 1.6 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
[tool.setuptools.packages.find]
include = [
"primrose*",
"data*",
"config*"
]
[project]
name = "primrose"
version = "2.0.0"
description = "Primrose: a framework for simple, quick modeling deployments"
authors = [
{name = "WW Data Science", email = "[email protected]"}
]
maintainers = [
{name = "Brian Graham", email = "[email protected]"},
{name = "Calvin Woo", email = "[email protected]"},
{name = "Pierre Winter", email = "[email protected]"},
{name = "Rakesh Ramesh", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent"
]
dependencies = [
"pandas>=1.5.3",
"click>=8.1.3",
"scikit-learn>=1.2.2",
"jstyleson>=0.0.2",
"networkx>=3.0",
"dill>=0.3.6",
"pyyaml>=6.0",
"google-cloud-storage>=2.7.0",
"matplotlib>=3.7.1",
"jinja2>=3.1.2",
"boto3>=1.26.93",
"mysql-connector-python>=8.0.32",
"slackclient>=2.9.4",
"testfixtures>=7.1.0",
"moto>=4.1.4",
"nltk>=3.8.1",
"pydot>=1.4.2",
]
requires-python = ">=3.8"
readme = "README.md"
license = {file = "./LICENSE"}
[project.urls]
"Homepage" = "https://github.com/ww-tech/primrose"
"Documentation" = "https://ww-tech.github.io/primrose/"
[project.scripts]
primrose = "primrose.__init__:cli"
[project.optional-dependencies]
test = [
"pytest>=7.2.2",
]
postgres = [
"psycopg2-binary>=2.9.5",
]
plotting = [
"pygraphviz>=1.10",
]
R = [
"rpy2>=3.5.10",
]