forked from while0pass/grin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (40 loc) · 1.09 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
import os
from setuptools import setup
kwds = {}
# Read the long description from the README.txt
thisdir = os.path.abspath(os.path.dirname(__file__))
f = open(os.path.join(thisdir, 'README.rst'))
kwds['long_description'] = f.read()
f.close()
setup(
name = 'grin',
version = '1.2.1',
author = 'Robert Kern',
author_email = '[email protected]',
description = "A grep program configured the way I like it.",
license = "BSD",
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Utilities",
],
py_modules = ["grin"],
entry_points = dict(
console_scripts = [
"grin = grin:grin_main",
"grind = grin:grind_main",
],
),
install_requires = [
'argparse >= 1.1',
],
tests_require = [
'nose >= 0.10',
],
test_suite = 'nose.collector',
**kwds
)