-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
38 lines (33 loc) · 914 Bytes
/
setup.cfg
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
[metadata]
name = bcl
version = 3.0.0
author = Nth Party
author_email = [email protected]
description = Python library that provides a simple interface for symmetric (i.e., secret-key) and asymmetric (i.e., public-key) encryption/decryption primitives.
long_description = file: README.rst
license = MIT
url = https://github.com/nthparty/bcl
[options]
zip_safe = False
package_dir =
= src
python_requires = >=3.7
packages = find:
cmdclass =
install = bcl._sodium_build.Install
bdist_wheel = bcl._sodium_build.BdistWheel
install_requires =
barriers~=1.1
[options.packages.find]
where=src
[options.package_data]
* = *.tmpl
[options.extras_require]
build = setuptools>=67.6; wheel~=0.37; pystache~=0.6; build~=0.10
docs = sphinx~=4.2.0; sphinx-rtd-theme~=1.0.0
test = pytest~=7.2; pytest-cov~=4.0
lint = pylint~=2.17.0
coveralls = coveralls~=3.3.1
publish = twine~=4.0
[bdist_wheel]
universal = 1