-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.4 KB
/
pyproject.toml
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
[tool.poetry]
name = "mocodo"
version = "0" # actually dynamically set by poetry-version-plugin
description = "Modélisation Conceptuelle de Données. Nickel. Ni souris."
authors = ["Aristide Grange"]
license = "MIT"
readme = "README.md"
homepage = "https://www.mocodo.net/"
repository = "https://github.com/laowantong/mocodo/"
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",
]
# see https://github.com/tiangolo/poetry-version-plugin
[tool.poetry-version-plugin]
source = "init" # read version from __init__.py
[tool.poetry.dependencies]
python = "^3.6.1"
requests = "^2.22.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
issues = "https://github.com/laowantong/mocodo/issues"
[tool.poetry.scripts]
mocodo = 'mocodo.__main__:main'