-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
40 lines (30 loc) · 844 Bytes
/
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
[tool.poetry]
name = "goldenmask"
version = "0.2.1"
description = "Protect your python source code with one command."
authors = ["youngquan <youngquan@qq.com>"]
readme = 'README.md' # Markdown files are supported
repository = "https://github.com/youngquan/goldenmask"
homepage = "https://github.com/youngquan/goldenmask"
[tool.poetry.dependencies]
python = "^3.6"
click = "^7.0"
cython = "^0.29.14"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pylint = "^2.4.4"
flake8 = "^3.7.9"
pytest-datadir = "^1.3.1"
vulture = "^1.3"
isort = "^4.3.21"
autoflake = "^1.3.1"
black = "^19.10b0"
[[tool.poetry.source]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
default = false
[tool.poetry.scripts]
goldenmask = "goldenmask.cli:goldenmask"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"