forked from storborg/pyweaving
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
42 lines (39 loc) · 982 Bytes
/
setup.cfg
File metadata and controls
42 lines (39 loc) · 982 Bytes
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
[metadata]
name = pyweaving
version = 0.5
license = MIT
description = Python Weaving Tools
long_description = file: README.rst
long_description-content-type = text/x-rst
keywords = weaving handweaving wif draft pattern
author = Scott Torborg
author_email = storborg@gmail.com
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Multimedia :: Graphics
Operating System :: POSIX :: Linux
Operating System :: Unix
Operating System :: MacOS
Operating System :: Microsoft :: Windows
[options]
python_requires = >=3.8
zip_safe = False
packages = find_namespace:
package_dir =
=src
include_package_data = True
install_requires =
Pillow>=10.0
svgwrite>=1.4.1
[options.entry_points]
console_scripts =
pyweaving = pyweaving.cmd:main
[options.packages.find]
where=src
exclude =
tests
tests.*