-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 884 Bytes
/
pyproject.toml
File metadata and controls
29 lines (27 loc) · 884 Bytes
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
[tool.poetry]
name = "python-vimeo"
version = "0.1.0"
description = "A Python wrapper for Vimeos API"
readme = "README.rst"
homepage = "https://github.com/arbington/python-vimeo"
repository = "https://github.com/arbington/python-vimeo"
authors = ["Kalob Taulien <kalob.taulien@gmail.com>"]
keywords = ["vimeo", "python", "api"]
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
[tool.poetry.dependencies]
python = "^3.9"
PyVimeo = "^1.1.0"
requests = "^2.27.1"
beautifulsoup4 = "^4.10.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"