forked from mozilla/dxr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (42 loc) · 1.49 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
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='0.1',
description='Source code static analysis and browsing',
long_description=open('README.mkd').read(),
author='Erik Rose',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=['ez_setup']),
scripts=['bin/dxr-build.py', 'bin/dxr-serve.py'],
install_requires=['Flask>=0.9',
'futures>=2.1.1',
'Jinja2>=2.6',
'Pygments>=1.4'],
tests_require=['nose'],
test_suite='nose.collector',
url='https://github.com/mozilla/dxr',
include_package_data=True,
zip_safe=False, # So we can find dxr-worker.py as a file to run it as a
# subprocess
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']
)