-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.cfg
41 lines (37 loc) · 998 Bytes
/
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
[metadata]
name = graphexec
version = attr: graphexec.VERSION
description = Execute litegraph.js graphs server-side
long_description = file: README.md
long_description_content_type = text/markdown
keywords = litegraph
license = MIT
url = https://github.com/mcejp/graphexec
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Environment :: Web Environment
Framework :: Flask
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
[options]
install_requires =
Jinja2
Flask
numpy
pydantic
packages = find:
python_requires = >=3.9
[options.entry_points]
console_scripts =
graphexec = graphexec.cli:main
graphexec-generate-js-module = graphexec.generate_js_module:main
graphexec-server = graphexec.server:main
graphexec.node_types =
litegraph_builtins = graphexec.litegraph_builtins
builtin = graphexec.nodes
[options.extras_require]
dev =
black
mypy