Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PEP 517/518 compliance #66

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = "tmdbsimple"
version = "2.2.7"
description = "A Python wrapper for The Movie Database API v3."
authors = ["Celia Oakley <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.rst"
homepage = "https://github.com/celiao/tmdbsimple"
repository = "https://github.com/celiao/tmdbsimple"
keywords = ["movie", "the movie database", "movie database", "tmdb", "wrapper"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Utilities",
]

[tool.poetry.dependencies]
python = "^2.7"
requests = "^2.23.0"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"

35 changes: 0 additions & 35 deletions setup.py

This file was deleted.