-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.39 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyrsm"
dynamic = ["version"]
description = "Python functions for Customer Analytics at the Rady School of Management (RSM)"
readme = "README.md"
license = {text = "AGPL-3.0-only"}
authors = [
{name = "Vincent Nijs", email = "[email protected]"},
{name = "Vikram Jambulapati", email = "[email protected]"},
{name = "Suhas Goutham", email = "[email protected]"},
{name = "Raghav Prasad", email = "[email protected]"},
]
dependencies = [
"shiny>=1.2.0",
"shinyswatch>=0.7.0",
"faicons>=0.2.2",
"numpy>=1.17.3",
"pandas>=2.2.3",
"polars>=1.12.0",
"duckdb>=1.1.2",
"ipykernel>=6.23.1",
"seaborn>=0.9.0",
"matplotlib>=3.1.1",
"statsmodels>=0.14.4",
"scipy>=1.4.1",
"scikit-learn>=1.5.2,!=1.6.*",
"IPython>=8.0.1",
"nest-asyncio>=1.5.6",
"black",
"pyarrow>=17.0.0",
"xgboost>=2.1.1",
]
[project.urls]
"Bug Reports" = "https://github.com/vnijs/pyrsm/issues"
"Source" = "https://github.com/vnijs/pyrsm"
[tool.setuptools]
include-package-data = true
packages = {find = {exclude = ["*.tests", "*.tests.*", "tests.*", "tests", "examples", "pyrsm.radiant.www", "pyrsm.radiant.www.imgs", "pyrsm.radiant.www.js"]}}
[tool.setuptools.package-data]
pyrsm = ["pyrsm/radiant/www/*"]
[tool.setuptools.dynamic]
version = {attr = "pyrsm.__version__"}