-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (27 loc) · 923 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
[tool.poetry]
name = "addrcollector"
version = "2.0.0"
description = "A Python application for collecting email addresses from email messages"
license = "CC0-1.0"
authors = ["Owen T. Heisler <writer@owenh.net>"]
readme = "README.rst"
homepage = "https://owenh.net/addrcollector"
repository = "https://github.com/owenh000/addrcollector"
keywords = ["email"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Email :: Address Book"
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
addrcollector = 'addrcollector:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"