-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 800 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
from distutils.core import setup
from setuptools import find_packages
import sequential_parser
setup(
name = 'sequential-parser',
packages = find_packages(),
version = sequential_parser.__version__,
description = 'Utility to extract structured text using text patterns and a state machine.',
author = 'Martin Olveyra',
author_email = 'molveyra@gmail.com',
license = 'BSD',
url = 'https://github.com/kalessin/sequential-parser',
keywords = ['scraping', 'parsing'],
classifiers = [
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)