1 Star 0 Fork 0

fengc_h/javalang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
javalang
.gitignore
.travis.yml
LICENSE.txt
MANIFEST.in
README.rst
requirements.txt
setup.py
克隆/下载
setup.py 1019 Bytes
一键复制 编辑 原始数据 按行查看 历史
Chris Thunes 提交于 7年前 . Release 0.12.0.
from setuptools import setup
setup(
name = "javalang",
packages = ["javalang"],
version = "0.12.0",
author = "Chris Thunes",
author_email = "cthunes@brewtab.com",
url = "http://github.com/c2nes/javalang",
description = "Pure Python Java parser and tools",
classifiers = [
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries"
],
long_description = """\
========
javalang
========
javalang is a pure Python library for working with Java source
code. javalang provies a lexer and parser targeting Java 8. The
implementation is based on the Java language spec available at
http://docs.oracle.com/javase/specs/jls/se8/html/.
""",
zip_safe = False,
install_requires = ['six',],
tests_require = ["nose",],
test_suite = "nose.collector",
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/code0_FC/javalang.git
git@gitee.com:code0_FC/javalang.git
code0_FC
javalang
javalang
master

搜索帮助