forked from FasterSpeeding/Privacy.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.13 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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "privacy.py"
version = "2019.12.11"
description = "A Python lib for Privacy.com"
authors = ["FasterSpeeding <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/FasterSpeeding/Privacy.py"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
packages = [
{ include = "privacy" }
]
[tool.poetry.dependencies]
python = ">=3.6,<3.9"
pydantic = "1.0"
requests = "2.22.0"
[tool.poetry.dev-dependencies]
pytest = "^3.4"
flake8 = "3.7.9"
black = "19.10b0"
[tool.black]
line-length = 120
target-version = ["py36", "py37", "py38"]