forked from lab-cosmo/chemiscope
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (65 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
81 lines (65 loc) · 2.02 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "chemiscope"
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"numpy",
"ipywidgets>=7,<9",
]
readme = "python/README.md"
license = {text = "BSD-3-Clause"}
description = "Helpers to work with the chemiscope interactive structure/property explorer for materials and molecules"
authors = [
{name = "Guillaume Fraux", email = "guillaume.fraux@epfl.ch"},
]
keywords = ["visualization", "materials science", "chemistry", "molecules"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
]
[project.urls]
homepage = "https://chemiscope.org"
documentation = "https://chemiscope.org/docs/"
repository = "https://github.com/lab-cosmo/chemiscope"
[project.scripts]
chemiscope-input = "chemiscope.main:main"
### ======================================================================== ###
[build-system]
requires = [
"setuptools",
"wheel",
"jupyterlab >=4.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "chemiscope.version.__version__"}
[tool.setuptools.packages.find]
where = ["python"]
include = ["chemiscope*"]
namespaces = false
### ======================================================================== ###
[tool.ruff.lint]
select = ["E", "F", "B", "I"]
ignore = ["B018", "B904"]
[tool.ruff.lint.isort]
lines-after-imports = 2
known-first-party = ["chemiscope"]
[tool.ruff.format]
docstring-code-format = true
### ======================================================================== ###
[project.optional-dependencies]
explore = [
"pet_mad>=1.3,<2.0",
"metatomic-torch >=0.1.0,<0.2",
"vesin >=0.3.5,<0.4",
]