generated from dawsonbooth/poetry-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 1.08 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
[tool.poetry]
name = "emoji-search"
version = "1.2.0"
description = "The #1 Python tool for miscellaneous emoji info"
authors = ["Dawson Booth <pypi@dawsonbooth.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/dawsonbooth/emoji-search"
repository = "https://github.com/dawsonbooth/emoji-search"
keywords = ["cli", "console", "emoji", "unicode", "emoticon", "emojipedia", "scrape", "web", "search"]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
include = [
"LICENSE",
]
packages = [
{ include = "emoji" },
]
[tool.poetry.scripts]
emoji-search = 'emoji.__main__:main'
[tool.poetry.dependencies]
python = "^3.6"
beautifulsoup4 = "^4.9.1"
lxml = "^4.5.1"
requests = "^2.24.0"
[tool.poetry.dev-dependencies]
pytest = "^5.3.2"
autopep8 = "^1.5"
pylint = "^2.4.4"
rope = "^0.17.0"
mkdocs = "^1.1.2"
pydoc-markdown = "^3.3.0"
pyclean = "^2.0.0"
invoke = "^1.4.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"