-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.cfg
55 lines (50 loc) · 1.28 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
[metadata]
name = ilua
author = Guy Sviry
author_email = [email protected]
license = GPLv2
description = Portable Lua kernel for Jupyter
keywords =
lua
interactive
console
jupyter
kernel
url = https://github.com/guysv/ilua
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development :: Interpreters
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Operating System :: OS Independent
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
packages = find:
install_requires =
twisted
termcolor
pygments
txzmq
jupyter_core
jupyter_console
pywin32;sys_platform=="win32"
setup_requires = setuptools>=44; wheel; setuptools_scm[toml]>=3.4.3
[options.entry_points]
console_scripts = ilua=ilua.consoleapp:main
[options.package_data]
ilua =
interp.lua
builtins.lua
ext/json.lua
ext/netstring.lua
ext/inspect.lua
[bdist_wheel]
universal = 1