-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.15 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
[tool.poetry]
name = "pybetter"
version = "0.4.2"
description = "Tool for fixing trivial problems with your code."
authors = ["Kirill Borisov <lensvol@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/lensvol/pybetter"
keywords = ["ast"]
include = [
"LICENSE",
]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Utilities",
"Topic :: Software Development",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Quality Assurance",
]
[tool.poetry.dependencies]
python = ">3.7"
libcst = "^1.0.1"
click = ">8.0"
pyemojify = "^0.2.0"
pygments = "^2.5.2"
[tool.poetry.dev-dependencies]
ipdb = "^0.13.2"
mypy = "^1.3.0"
flake8 = "^3.8.3"
pytest = "^7.2.0"
pytest-cov = "^4.1.0"
hypothesmith = "^0.1.8"
[tool.poetry.scripts]
pybetter = 'pybetter.cli:main'
[tool.poetry.group.dev.dependencies]
codecov = "^2.1.12"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"