forked from sns-sdks/python-facebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 loc) · 1.47 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
46
47
48
49
50
[tool.poetry]
name = "python-facebook-api"
version = "0.7.2"
description = "A simple Python wrapper around the Facebook Graph API"
authors = ["Ikaros kun <merle.liukun@gmail.com>"]
readme = "README.rst"
license = "Apache-2.0"
repository = 'https://github.com/sns-sdks/python-facebook'
homepage = "https://github.com/sns-sdks/python-facebook"
keywords = ["facebook-graph-api", "facebook-sdk", "instagram-api", "instagram-sdk", "facebook-api"]
classifiers = [
# see https://pypi.org/pypi?%3Aaction=list_classifiers
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
]
packages = [
{ include = "pyfacebook" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = "~2.7 || ^3.6"
requests = "^2.24.0"
attrs = "^20.1.0"
cattrs = [
{ version = "1.0.0", python = "~2.7 || ~3.6" },
{ version = "^1.1.1", python = "^3.7" }
]
responses = "^0.12.0"
requests-oauthlib = "^1.3.0"
[tool.poetry.dev-dependencies]
pytest = "^4.6.11"
pytest-cov = "^2.10.1"
flake8 = "^3.8.3"
codecov = "^2.1.9"
tox = "^3.20.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"