forked from sampsyo/python-blekko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 682 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 682 Bytes
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
import os
from distutils.core import setup
def _read(fn):
path = os.path.join(os.path.dirname(__file__), fn)
return open(path).read()
setup(name='blekko',
version='0.1.1',
description='bindings for the Blekko search engine API',
author='Adrian Sampson',
author_email='adrian@radbox.org',
url='https://github.com/sampsyo/python-blekko',
license='MIT',
platforms='ALL',
long_description=_read('README.rst'),
py_modules=['blekko'],
classifiers=[
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
],
)