forked from facultyai/dash-bootstrap-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (56 loc) · 1.59 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
dist-name = "dash-bootstrap-components"
module = "dash_bootstrap_components"
author = "Faculty"
author-email = "opensource@faculty.ai"
home-page = "https://dash-bootstrap-components.opensource.faculty.ai"
classifiers = [
"Framework :: Dash",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
requires = ["dash>=1.9.0"]
description-file = "landing-page.md"
requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
[tool.flit.metadata.requires-extra]
pandas = ["numpy", "pandas"]
[tool.flit.metadata.urls]
Source = "https://github.com/facultyai/dash-bootstrap-components/"
"Bug Reports" = "https://github.com/facultyai/dash-bootstrap-components/issues"
[tool.flit.sdist]
include = [
"dash_bootstrap_components/_components/*.py",
"dash_bootstrap_components/_components/*.js",
"dash_bootstrap_components/_components/*.json"
]
exclude = [
".github",
"demo",
"docs",
"examples",
"R",
"readme-images",
"src",
"tests",
"webpack",
".babelrc",
".gitignore",
".prettierrc",
".Rbuildignore",
"gulpfile.js",
"jest.config.js",
"noxfile.py",
"package.json",
"package-lock.json",
"tasks.py"
]
[tool.black]
line-length = 79
exclude = "dash_bootstrap_components/_components|node_modules"