-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.18 KB
/
setup.py
File metadata and controls
39 lines (35 loc) · 1.18 KB
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
import os
import setuptools
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name = "splparser",
version = "0.2.0",
url = "https://pypi.org/project/splparser/",
project_urls = {
"GitHub" : "https://github.com/salspaugh/splparser",
},
author = "Sara Alspaugh",
author_email = "saraalspaugh@gmail.com",
license = "BSD",
description = ("A simple parser for the Splunk Processing Language which emits parse trees."),
long_description=read('README.md'),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Other",
"Topic :: Software Development :: Compilers",
"License :: OSI Approved :: BSD License",
],
keywords = "Splunk Processing Language SPL parser",
packages=['splparser',
'splparser.lexers',
'splparser.parsetabs',
'splparser.regexes',
'splparser.rules',
'splparser.rules.common',
'test'],
requires=["ply", "nose"],
)