-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (38 loc) · 1.05 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='opengrokfs',
description='OpenGrok FUSE filesystem and tools',
long_description=readme(),
license='MIT',
url='https://github.com/rabinv/opengrokfs',
author='Rabin Vincent',
author_email='[email protected]',
version='0.2.1',
install_requires=[
'attrs>=16.3.0',
'dateparser>=0.6.0',
'fusepy>=2.0.4',
'lxml>=3.7.1',
'requests>=2.12.4',
'requests_cache>=0.4.13',
],
tests_require=['pytest'],
entry_points={
'console_scripts': [
'opengrokfs = opengrokfs.opengrokfs:main',
'oggrep = opengrokfs.grep:main',
'ogcscope = opengrokfs.cscope:main'
],
},
packages=['opengrokfs'],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development',
],
)