-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
40 lines (37 loc) · 1.12 KB
/
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
39
40
[metadata]
name = batch_gcd
version = attr: batch_gcd.__version__
author = Fionn Fitzmaurice
description = Pure Python implementation of DJB's Batch GCD algorithm
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/fionn/batch-gcd
keywords =
gcd
classifiers =
Programming Language :: Python :: 3
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Security :: Cryptography
Topic :: Scientific/Engineering :: Mathematics
Typing :: Typed
project_urls =
Source Code = https://github.com/fionn/batch-gcd
Changelog = https://github.com/fionn/batch-gcd/tags
Documentation = https://github.com/fionn/batch-gcd/blob/master/README.md
Bug Tracker = https://github.com/fionn/batch-gcd/issues
PyPI = https://pypi.org/project/batch-gcd/
Download = https://github.com/fionn/batch-gcd/archive/refs/heads/master.zip
[options]
zip_safe = false
pymodules = batch-gcd
include_package_data = true
packages = find:
python_requires = >=3.9
[options.package_data]
* = py.typed
[options.extras_require]
dev =
pylint
mypy
coverage