Skip to content

Commit 4740e50

Browse files
authored
updated install process
1 parent ceac91d commit 4740e50

File tree

1 file changed

+31
-7
lines changed

1 file changed

+31
-7
lines changed

pyproject.toml

Lines changed: 31 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,32 @@
11
[build-system]
2-
requires = ["setuptools>=42",
3-
"numpy>=1.9.0",
4-
"pandas>=1.3.0",
5-
"py3Dmol>=1.8.0",
6-
"ipywidgets>=7.5.0",
7-
"matplotlib>=3.5.0"]
8-
build-backend = "setuptools.build_meta"
2+
build-backend = "flit_core.buildapi"
3+
requires = [
4+
"flit_core >=3.4,<4",
5+
"setuptools_scm",
6+
"importlib_metadata>=0.7; python_version < '3.8'",
7+
]
8+
9+
[project]
10+
name = "alpha_viewer"
11+
description = "Alphafold Protein model viewer"
12+
requires-python = ">=3.8"
13+
license = {file = "LICENSE"}
14+
authors = [{name = "Severin Dicks"}]
15+
readme = {file = "README.md", content-type="text/markdown"}
16+
17+
dependencies = [
18+
"numpy>=1.9.0",
19+
"pandas>=1.3.0",
20+
"py3Dmol>=1.8.0",
21+
"ipywidgets>=7.5.0",
22+
"matplotlib>=3.5.0",
23+
]
24+
#dynamic = ["version"]
25+
version = "0.0.3"
26+
#packages = ["alpha_viewer"]
27+
28+
[project.urls]
29+
Source = "https://github.com/Intron7/alpha_viewer"
30+
31+
[tool.coverage.run]
32+
source = ["alpha_viewer"]

0 commit comments

Comments
 (0)