-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.41 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
[build-system]
requires = ["flit_core >=3,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
dist-name = "pants-jupyter-plugin"
module = "pants_jupyter_plugin"
author = "The Pants developers"
author-email = "[email protected]"
home-page = "https://github.com/pantsbuild/pants-jupyter-plugin"
description-file = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: IPython",
]
requires-python = ">=3.6,<3.11"
requires = [
"dataclasses==0.8; python_version == '3.6'",
"filelock>=3.0",
"ipython>=5.5.0,<9.0",
"ipywidgets>=7.0.0,<9.0",
"nest_asyncio~=1.5.1",
"requests>=2.22.0",
"twitter.common.contextutil~=0.3.11",
"xdg>=5.0.0,<6.0",
]
[tool.flit.sdist]
include = ["CHANGES.md"]
[tool.flit.metadata.urls]
Changelog = "https://github.com/pantsbuild/pants-jupyter-plugin/blob/main/CHANGES.md"
[tool.black]
line-length = 100
target-version = ["py36"]
exclude = '''
/(
| \.git
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 100