forked from garyelephant/pygrok
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 718 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
import os
long_desc = ''
if os.path.exists('README.rst'):
long_desc = open('README.rst').read()
setup(name = 'pygrok',
version = '0.5.0',
description = 'A Python library to parse strings and'
+ ' extract information from structured/unstructured data',
long_description= long_desc,
url = 'https://github.com/garyelephant/pygrok',
author = 'garyelephant',
author_email = 'garygaowork@gmail.com',
license = 'MIT',
packages = ['pygrok'],
include_package_data = True,
keywords = ['python grok', 'regex'], # arbitrary keywords
download_url = 'https://github.com/garyelephant/pygrok/tarball/v0.5.0',
install_requires=['regex']
)