Skip to content

Commit f4054c1

Browse files
committed
Setup of project structure
1 parent b5d8068 commit f4054c1

File tree

4 files changed

+40
-0
lines changed

4 files changed

+40
-0
lines changed

.vscode/settings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"activityBar.background": "#0D3049",
4+
"titleBar.activeBackground": "#134466",
5+
"titleBar.activeForeground": "#F7FBFE"
6+
}
7+
}

noxfile.py

Whitespace-only changes.

pyproject.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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"

src/maxplotlib/console/main.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def maxplotlib():
2+
print('Hello, world!')

0 commit comments

Comments
 (0)