Skip to content

Commit 34d80e5

Browse files
committed
Updated to use pyproject.toml file instead of setup.py
1 parent 4680a57 commit 34d80e5

File tree

2 files changed

+41
-31
lines changed

2 files changed

+41
-31
lines changed

pyproject.toml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
[build-system]
2+
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "tethysapp-map_layout_tutorial"
7+
description = ""
8+
9+
keywords = []
10+
11+
classifiers = [
12+
"Environment :: Web Environment",
13+
"Framework :: Django",
14+
"Intended Audience :: Developers",
15+
"Operating System :: OS Independent",
16+
"Programming Language :: Python",
17+
"Programming Language :: Python :: 3",
18+
"Programming Language :: Python :: 3.10",
19+
"Topic :: Internet :: WWW/HTTP",
20+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
21+
]
22+
dynamic = ["version"]
23+
24+
[tool.setuptools]
25+
include-package-data = true
26+
27+
[tool.setuptools.packages.find]
28+
include = ["tethysapp*"]
29+
30+
[tool.setuptools.package-data]
31+
"*" = [
32+
"*.js",
33+
"*.png",
34+
"*.gif",
35+
"*.jpg",
36+
"*.html",
37+
"*.css",
38+
"*.gltf",
39+
"*.json",
40+
"*.svg",
41+
]

setup.py

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)