forked from mozilla/dxr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (60 loc) · 2.46 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import sys
# Prevent spurious errors during `python setup.py test`, a la
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html:
try:
import concurrent.futures
except ImportError:
pass
from setuptools import setup, find_packages
setup(
name='dxr',
version='2.0',
description='Source code static analysis and browsing',
long_description=open('README.rst').read(),
author='Erik Rose',
author_email='erik@mozilla.com',
license='MIT',
packages=find_packages(exclude=['ez_setup']),
entry_points={'dxr.plugins': ['urllink = dxr.plugins.urllink',
'buglink = dxr.plugins.buglink:plugin',
'clang = dxr.plugins.clang:plugin',
'python = dxr.plugins.python:plugin',
'omniglot = dxr.plugins.omniglot',
'rust = dxr.plugins.rust:plugin',
'xpidl = dxr.plugins.xpidl:plugin',
'pygmentize = dxr.plugins.pygmentize'],
'console_scripts': ['dxr = dxr.cli:main']},
install_requires=['click>=3.3,<5.0',
'configobj>=5.0.6',
'Flask>=0.9',
'funcy>=1.0,<2.0',
'futures>=2.1.1,<4.0',
'Jinja2>=2.6,<3.0',
'Mercurial>=3.4',
'more-itertools>=2.0,<3.0',
'ordereddict>=1.1,<2.0',
'parsimonious>=0.6,<0.7',
'pyelasticsearch>=1.1,<2.0',
'Pygments>=2.0.1,<3.0',
'python-hglib>=1.7,<2.0',
'xpidl>=1.0',
'requests>=1.0,<2.0'],
tests_require=['nose>=1.3.0,<2.0'],
test_suite='nose.collector',
url='https://github.com/mozilla/dxr',
include_package_data=True,
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Software Development'
],
keywords=['lxr', 'static analysis', 'source code']
)