Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9123630
setup.py
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
setup.py
View Options
"""
Py-Tree-sitter
"""
from
setuptools
import
setup
,
Extension
setup
(
name
=
"tree_sitter"
,
version
=
"0.0.1"
,
maintainer
=
"Max Brunsfeld"
,
maintainer_email
=
"maxbrunsfeld@gmail.com"
,
author
=
"Max Brunsfeld"
,
author_email
=
"maxbrunsfeld@gmail.com"
,
url
=
"https://github.com/tree-sitter/py-tree-sitter"
,
license
=
"MIT"
,
platforms
=
[
"any"
],
python_requires
=
">=2.7"
,
description
=
"Python bindings to the Tree-sitter parsing library"
,
classifiers
=
[
"Topic :: Parsing"
,
],
packages
=
[
'tree_sitter'
],
ext_modules
=
[
Extension
(
"tree_sitter_binding"
,
[
"tree_sitter/core/lib/src/lib.c"
,
"tree_sitter/binding.c"
,
],
include_dirs
=
[
"tree_sitter/core/lib/include"
,
"tree_sitter/core/lib/utf8proc"
,
],
extra_compile_args
=
[
"-std=c99"
,
],
)
],
project_urls
=
{
'Source'
:
'https://github.com/tree-sitter/py-tree-sitter'
,
'Documentation'
:
'http://initd.org/psycopg/docs/'
,
}
)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Jun 21, 5:49 PM (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3424447
Attached To
rPTS python3-tree-sitter
Event Timeline
Log In to Comment