-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (69 loc) · 1.46 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[metadata]
name = Hex System
version = attr: hex_system.__version__
url = https://github.com/Teslacrashed/hex_system
author = Tesla Crash
maintainer = Tesla Crash
description = .
license = From Dyvers Hands
license_files = LICENSE.rst
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = hex, geometry, grid, tile
platforms = any
classifiers =
Development Status :: 4 - Beta
Natural Language :: English
Operating System :: OS Independent
Operating System :: POSIX
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
zip_safe = False
package_dir =
=hex_system
packages = find:
include_package_data = True
python_requires = >= 3.7
install_requires =
pytest >= 7.1.0
setup_requires =
wheel >= 0.37.0
[options.packages.find]
where = hex_system
exclude =
.git
.idea
.pytest_cache
.venv
__pycache__
build
dist
logs
scripts
tests
wheelhouse
[egg_info]
egg_base = ./dist
tag_build =
tag_date = 0
[sdist]
dist_dir = ./dist
formats = gztar
[build]
build_base = ./build
build_lib = ./build/lib
[bdist_wheel]
bdist_dir = ./dist
dist_dir = ./wheelhouse
# {python tag}-{abi tag}-{platform tag}
plat_name = any
python_tag = py3
universal = 0