forked from chadwhitacre/dewey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 836 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
classifiers = [
'Development Status :: 3 - Alpha'
, 'Environment :: Console'
, 'Intended Audience :: Developers'
, 'License :: OSI Approved :: MIT License'
, 'Natural Language :: English'
, 'Operating System :: MacOS :: MacOS X'
, 'Operating System :: Microsoft :: Windows'
, 'Operating System :: POSIX'
, 'Programming Language :: Python'
]
setup( name = 'dewey'
, version = '0.3'
, package_dir = {'':'src'}
, packages = ['dewey']
, scripts = ['bin/dewey']
, description = 'Dewey is a fast index/search API for your filesystem.'
, author = 'Chad Whitacre'
, author_email = 'chad@zetaweb.com'
, url = 'http://code.google.com/p/dewey/'
, classifiers = classifiers
)