-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
69 lines (64 loc) · 1.89 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
[metadata]
name = clickgen
version = attr: clickgen.__version__
author = Abdulkaiz Khatri
author_email = [email protected]
description = The hassle-free cursor building toolbox.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ful1e5/clickgen
keywords = cursor, xcursor, windows, linux
project_urls =
Source = https://github.com/ful1e5/clickgen
Download = https://pypi.org/project/clickgen/#files
Bug Tracker = https://github.com/ful1e5/clickgen/issues
Changelog = https://github.com/ful1e5/clickgen/blob/main/CHANGELOG.md
Funding = https://github.com/sponsors/ful1e5
Twitter = https://twitter.com/ful1e5
classifiers =
Development Status :: 6 - Mature
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
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 :: Multimedia :: Graphics
Topic :: System :: Operating System
Topic :: Scientific/Engineering :: Image Processing
Operating System :: OS Independent
Typing :: Typed
[options]
python_requires = >=3.7.5
include_package_data = True
packages = find:
install_requires =
Pillow>=8.1.1
PyYaml>=6.0.1
attrs>=15.0.0
numpy>=1.21.6
toml>=0.10.2
package_dir =
= src
[options.packages.find]
where = src
include = clickgen*
[options.package_data]
* = LICENSE, README.md, *.pyi
clickgen = py.typed
[options.entry_points]
console_scripts =
clickgen = clickgen.scripts.clickgen:main
ctgen = clickgen.scripts.ctgen:main
[options.extras_require]
test =
flake8>=4.0.1
mypy>=0.982
pytest-cov>=3.0.0
pytest>=7.0.1
tox>=3.25.0
build =
build>=0.10.0