-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (27 loc) · 1.01 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
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup, find_packages
setup(name="boolmatch",
version="1.0",
description="Compare text to a boolean expression of terms.",
author="Jack Diederich",
author_email="[email protected]",
url="http://github.com/jackdied/boolmatch",
packages = find_packages(),
license = "MIT License",
keywords="bool boolean",
zip_safe = True,
py_modules=['boolmatch'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)