-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.41 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
51
52
53
54
55
56
57
58
59
60
[project]
name = "mocodo"
version = "4.3.3" # previously dynamically set by poetry-version-plugin
description = "Modélisation Conceptuelle de Données. Nickel. Ni souris."
authors = [{ name = "Aristide Grange" }]
requires-python = ">=3.6.1,<4"
readme = "README.md"
license = "MIT"
keywords = [
"education",
"relational",
"database",
"drawing",
"ERD",
"SVG",
"Merise",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: IPython",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Database",
"Topic :: Education",
]
dependencies = ["requests>=2.22.0,<3"]
[project.urls]
Homepage = "https://www.mocodo.net/"
Repository = "https://github.com/laowantong/mocodo/"
issues = "https://github.com/laowantong/mocodo/issues"
[project.scripts]
mocodo = "mocodo.__main__:main"
[project.optional-dependencies]
svg = [
"cairosvg>=2.7.1",
]
clipboard = [
"pyperclip>=1.9.0",
]
[dependency-groups]
dev = [
"pytest>=7.0.1",
]
[tool.poetry-version-plugin]
source = "init" # read version from __init__.py
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"