forked from oncomouse/citation-langserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 973 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 973 Bytes
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
[tool.poetry]
name = "citation-langserver"
version = "0.2.2"
description = "A language server for managing citations stored in BibTeX and BibLaTeX files."
license = "MIT"
authors = ["oncomouse <oncomouse@gmail.com>"]
homepage = "https://github.com/oncomouse/citation-langserver"
repository = "https://github.com/oncomouse/citation-langserver"
readme = "README.md"
classifiers = [
"Topic :: Text Editors",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
"Topic :: Text Editors :: Text Processing",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: Markdown"
]
include = [
"LICENSE"
]
[tool.poetry.dependencies]
python = "^3.6.1"
pygls = "^0.10.2"
bibparse = "^1.0.0"
websockets = "^11.0.3"
[tool.poetry.dev-dependencies]
pytest = "^4.6"
flake8 = "^3.8.3"
[tool.poetry.scripts]
citation-langserver = 'citation_langserver.cli:cli'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"