-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
35 lines (31 loc) · 1020 Bytes
/
Cargo.toml
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
[package]
name = "pysyntect"
version = "0.3.1-dev0"
authors = ["Edgar Andrés Margffoy Tuay <[email protected]>"]
description = "Python bindings for the syntect syntax highlighter."
repository = "https://github.com/spyder-ide/pysyntect"
license = "MIT"
keywords = ["syntax", "highlighting", "syntect"]
readme = "README.md"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "syntect"
crate-type = ["cdylib"]
[dependencies]
syntect = "4.5"
[dependencies.pyo3]
version = "0.15.1"
features = ["extension-module"]
[package.metadata.maturin]
classifier = [
"Development Status :: 4 - Beta",
"Topic :: Software Development",
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
]