-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.01 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
[tool.poetry]
name = "sebex"
version = "0.1.0"
description = "The ultimate assistant in Membrane Framework releasing & development"
license = "Apache-2.0"
authors = ["Membrane Team <info+sebex@membraneframework.org>"]
readme = "README.md"
homepage = "membraneframework.org"
repository = "https://github.com/membraneframework/sebex"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Version Control :: Git",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
include = [
"sebex/language/elixir/elixir_analyzer"
]
[tool.poetry.scripts]
sebex = "sebex.__main__:main"
[tool.poetry.dependencies]
python = "^3.8"
click = "^7.0"
colorama = "*"
gitpython = "^3.1"
graphviz = "^0.13.0"
petname = "^2.6"
pygithub = "^1.59.0"
python-dotenv = "^0.10.5"
pyyaml = "^5.4"
semver = "^2.9"
[tool.poetry.dev-dependencies]
pytest = "^5.3"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"