-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
52 lines (50 loc) · 1.61 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
[metadata]
name = kle_scraper
version = attr: kle_scraper.__version__
author = Hajime Nakazato
author_email = hajime@kaoriha.org
home_page = https://github.com/hajimen/kle_scraper
description = kle_scraper is a Python library for scraping the key top images of keyboard-layout-editor.com (KLE).
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE
platform = any
keywords =
keyboard-layout-editor.com
KLE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Bug Tracker = https://github.com/hajimen/kle_scraper/issues
Changelog = https://github.com/hajimen/kle_scraper/blob/master/CHANGELOG.md
[options]
python_requires = >= 3.7
packages = kle_scraper
test_suite = tests
setup_requires =
setuptools >=38.3.0 # version with most `setup.cfg` bugfixes
install_requires =
cefpython3 >= 66.1;python_version<'3.10'
cefpython3_v66.1_for_python_3.12_unofficial >= 66.1;python_version>='3.10'
Pillow >= 8.2.0
pykle-serial >= 0.0.2
[options.package_data]
kle_scraper =
web/*
web/css/*
web/fonts/*
web/js/*
# tests_require =
# {tests_require}