|
1 | 1 | [tool.poetry]
|
2 |
| -authors = ["DBCLS"] |
3 |
| -classifiers = [ |
4 |
| - 'Programming Language :: Python :: 3', |
5 |
| - 'Programming Language :: Python :: 3.7', |
6 |
| - 'Programming Language :: Python :: 3.8', |
7 |
| - 'Programming Language :: Python :: 3.9', |
8 |
| - 'License :: OSI Approved :: MIT License', |
9 |
| -] |
| 2 | +name = "umakaparser" |
| 3 | +version = "0.2.2" |
10 | 4 | description = ""
|
| 5 | +authors = ["DBCLS"] |
| 6 | +license = "MIT" |
| 7 | +repository = "https://github.com/dbcls/umakaparser" |
11 | 8 | homepage = "http://umaka-viewer.dbcls.jp/"
|
12 | 9 | keywords = ['dbcls', 'rdf']
|
13 |
| -license = "MIT" |
14 |
| -name = "umakaparser" |
| 10 | +classifiers = [ |
| 11 | + 'Programming Language :: Python :: 3', |
| 12 | + 'Programming Language :: Python :: 3.7', |
| 13 | + 'Programming Language :: Python :: 3.8', |
| 14 | + 'Programming Language :: Python :: 3.9', |
| 15 | + 'License :: OSI Approved :: MIT License', |
| 16 | +] |
15 | 17 | readme = "docs/description.md"
|
16 |
| -repository = "https://github.com/dbcls/umakaparser" |
17 |
| -version = "0.2.3" |
18 | 18 |
|
19 | 19 | [tool.poetry.dependencies]
|
| 20 | +python = ">=3.7" |
20 | 21 | click = "^8.0"
|
21 | 22 | isodate = "^0.6.0"
|
22 | 23 | pyparsing = "^3.0"
|
23 |
| -python = ">=3.7" |
| 24 | +tqdm = "^4.52.0" |
24 | 25 | python-i18n = "^0.3.9"
|
25 | 26 | rdflib = "^6.0.0"
|
26 |
| -tqdm = "^4.52.0" |
27 | 27 |
|
28 | 28 | [tool.poetry.dev-dependencies]
|
29 |
| -autopep8 = "^1.5.4" |
30 |
| -flake8 = "^4.0.0" |
31 | 29 | pytest = "^7.0"
|
32 | 30 | tox = "^3.20.1"
|
| 31 | +flake8 = "^4.0.0" |
| 32 | +autopep8 = "^1.5.4" |
33 | 33 |
|
34 | 34 | [tool.poetry.scripts]
|
35 | 35 | umakaparser = "umakaparser.services:cmd"
|
36 | 36 |
|
| 37 | + |
37 | 38 | [build-system]
|
38 |
| -build-backend = "poetry.masonry.api" |
39 | 39 | requires = ["poetry>=0.12"]
|
| 40 | +build-backend = "poetry.masonry.api" |
0 commit comments