-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 1.03 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 = "fxr"
version = "0.2.5"
description = "An ag/sed replacement"
authors = ["Panos Mavrogiorgos <pmav99@gmail.com>"]
license = "MIT"
readme = 'README.md' # Markdown files are supported
repository = "https://github.com/pmav99/fxr"
homepage = "https://github.com/pmav99/fxr"
keywords=['fxr', 'search', 'find', 'replace', 'find and replace', 'search and replace']
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Environment :: Console",
"Topic :: Software Development",
"Topic :: System",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
]
packages = [
{ include = "fxr.py", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^4.0"
munch = "^2.3"
bump2version = "^0.5.10"
pre-commit = "^1.15"
pre-commit-hooks = "^2.1"
black = {version = "^18.3-alpha.0",allows-prereleases = true}
[tool.poetry.scripts]
fxr = 'fxr:cli'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"