Skip to content

Commit

Permalink
use poetry for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesturk committed May 24, 2021
1 parent 4ff000e commit 7353c6d
Show file tree
Hide file tree
Showing 4 changed files with 335 additions and 39 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Source: https://github.com/jamesturk/django-honeypot/
Requirements
============

* python >= 3.6
* python >= 3.7
* django >= 2.2

(django-honeypot 0.7 supports Django 1.11 and Python 2.7)
Expand Down
303 changes: 303 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[tool.poetry]
name = "django-honeypot"
version = "1.0.0"
description = "Django honeypot field utilities"
authors = ["James Turk <dev@jamesturk.net>"]
license = "BSD-2-Clause"
readme = "README.rst"
repository = "https://github.com/jamesturk/django-honeypot/"
classifiers = [
"Development Status :: 5 - Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Environment :: Web Environment",
]


[tool.poetry.dependencies]
python = "^3.7"

[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
black = "^21.5b1"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Loading

0 comments on commit 7353c6d

Please sign in to comment.