-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
51 lines (46 loc) · 1.23 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
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
#
# K2hash Python Driver under MIT License
#
# Copyright (c) 2022 Yahoo Japan Corporation
#
# For the full copyright and license information, please view
# the license file that was distributed with this source code.
#
# AUTHOR: Hirotaka Wakabayashi
# CREATE: Tue Feb 08 2022
# REVISION:
#
[metadata]
# This includes the license file(s) in the wheel.
# https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
license_files = LICENSE
name = k2hash
version = 1.0.1
author = Hirotaka Wakabayashi
author_email = hiwakaba@yahoo-corp.jp
description = A module for k2hash from antpickax
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/yahoojapan/k2hash_python
project_urls =
Bug Tracker = https://github.com/yahoojapan/k2hash_python/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
[options]
package_dir =
= src
packages = find:
python_requires = >=3.9
[options.packages.find]
where = src
#
# Local variables:
# tab-width: 4
# c-basic-offset: 4
# End:
# vim600: expandtab sw=4 ts=4 fdm=marker
# vim<600: expandtab sw=4 ts=4
#