Don't install files into site-packages root.

This commit is contained in:
Dain Nilsson 2021-10-07 16:42:09 +02:00
parent b84dc08286
commit 5a96c18db1
No known key found for this signature in database
GPG Key ID: F04367096FBA95E8
1 changed files with 8 additions and 2 deletions

View File

@ -20,11 +20,17 @@ classifiers = [
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules"
]
include = ["COPYING", "COPYING.MPLv2", "COPYING.APLv2", "NEWS", "README.adoc"]
include = [
{ path = "COPYING", format = "sdist"},
{ path = "COPYING.MPLv2", format = "sdist"},
{ path = "COPYING.APLv2", format = "sdist"},
{ path = "NEWS", format = "sdist"},
{ path = "README.adoc", format = "sdist"},
]
[tool.poetry.dependencies]
python = "^3.6"
cryptography = "^2.1 || ^3.0"
cryptography = ">=2.1, <36"
dataclasses = {version = "^0.8", python = "<3.7"}
pyscard = {version = "^1.9 || ^2.0.0", optional = true}