-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.17 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
[build-system]
requires = ['setuptools>=61.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'mspec'
version = '0.0.14a'
authors = [
{ name='Brad Corlett', email='brad.corlett@gmail.com' },
]
description = 'mspec application generator and browsing protocol'
readme = 'README.md'
requires-python = '>=3.7'
dependencies = [
'pyyaml == 6.0.2',
'Jinja2 == 3.1.4',
'python-dotenv == 1.2.1',
'uwsgitop == 0.12.0',
'pyjwt >= 2.8.0',
'cryptography >= 41.0.0',
'pillow>=10.0.0',
'pytesseract>=0.3.10',
'multipart==1.3.1'
]
license = 'MIT'
[project.urls]
Homepage = "https://github.com/medium-tech/mspec"
Documentation = "https://github.com/medium-tech/mspec/blob/main/README.md"
Repository = "https://github.com/medium-tech/mspec"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.yaml", "*.yml", "*.json", "*.jinja2", "*.html", "*.css", "*.js", ".md"]
"mtemplate" = [
".cache/**",
".cache/py/.env.example.jinja2",
".cache/py/.gitignore.jinja2",
".cache/browser1/.gitignore.jinja2"
]
"mspec" = [
"data/mapp-ui/src/*.html",
"data/mapp-ui/src/*.css",
"data/mapp-ui/src/*.js"
]