-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 832 Bytes
/
pyproject.toml
File metadata and controls
30 lines (25 loc) · 832 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
[tool.poetry]
name = "ads2gephi"
version = "0.3.8"
description = "A command line tool for querying and modeling citation networks from the Astrophysical Data System (ADS) in a format compatible with Gephi"
authors = ["Theo Costea <theo.costea@gmail.com>", "Edwin Henneken <ehenneken@cfa.harvard.edu>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/03b8/ads2gephi"
keywords = ["citation network", "network analysis", "astrophysical data system"]
[tool.poetry.dependencies]
python = ">=3.5"
ads = "^0.12.3"
sqlalchemy = "^1.3"
configparser = "^3.7"
click = "^7.0"
python-igraph = "^0.8.2"
tqdm = "^4.32"
yaspin = "^0.14.3"
[tool.poetry.dev-dependencies]
pytest = "^5.0"
[tool.poetry.scripts]
ads2gephi = 'ads2gephi.cli:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"