-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.41 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
51
52
53
54
[tool.poetry]
name = "gadget-tools"
version = "0.4.0"
description = "A library for handling GADGET-2 snapshot files."
readme = "README.md"
authors = [
"Mariana Jaber <[email protected]>",
"Omar Abel Rodríguez-López <[email protected]>"
]
license = "Apache-2.0"
homepage = "https://github.com/Gadget-Tools"
repository = "https://github.com/Gadget-Tools"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics"
]
packages = [
{ include = "gadget_tools", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.18.1"
scipy = "^1.4.1"
click = "^7.0"
attrs = "^19.3.0"
python-dotenv = "^0.12.0"
colored = "^1.4.2"
tabulate = "^0.8.7"
pendulum = "^2.1.0"
tqdm = "^4.46.0"
[tool.poetry.dev-dependencies]
pytest = "^5.3.5"
mkdocs = "^1.1.2"
[tool.poetry.scripts]
gadget-tools = "gadget_tools.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"