File tree Expand file tree Collapse file tree 4 files changed +40
-0
lines changed Expand file tree Collapse file tree 4 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "workbench.colorCustomizations" : {
3+ "activityBar.background" : " #0D3049" ,
4+ "titleBar.activeBackground" : " #134466" ,
5+ "titleBar.activeForeground" : " #F7FBFE"
6+ }
7+ }
Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [" setuptools" , " wheel" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [project ]
6+ name = " maxplotlib"
7+ version = " 0.1"
8+ description = " A reproducible plotting module with various backends and export options."
9+ readme = " README.md"
10+ requires-python = " >=3.8"
11+ license = {file = " LICENSE.txt" }
12+ keywords = [" matplotlib" ]
13+ authors = [{name = " Max" }]
14+ classifiers = [
15+ " Development Status :: 3 - Alpha" ,
16+ ]
17+ dependencies = [
18+ " matplotlib" ,
19+ ]
20+
21+ [project .optional-dependencies ]
22+ dev = [" check-manifest" ]
23+ test = [" coverage" ]
24+ [project .urls ]
25+ "Source" = " https://github.com/max-models/maxplotlib"
26+
27+ [tool .setuptools .packages .find ]
28+ where = [" src" ]
29+
30+ [project .scripts ]
31+ maxplotlib = " maxplotlib.console.main:maxplotlib"
Original file line number Diff line number Diff line change 1+ def maxplotlib ():
2+ print ('Hello, world!' )
You can’t perform that action at this time.
0 commit comments