-
Notifications
You must be signed in to change notification settings - Fork 162
/
setup.py
35 lines (31 loc) · 1019 Bytes
/
setup.py
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
from setuptools import setup
setup(
name = "javalang",
packages = ["javalang"],
version = "0.13.0",
author = "Chris Thunes",
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",
)