-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·34 lines (30 loc) · 999 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
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
from distutils.core import setup
import os
execfile(os.path.join('squawk', 'version.py'))
try:
long_description = open("README.md").read()
except IOError:
long_description = ""
setup(
name = 'squawk',
version = VERSION,
description = 'SQL query tool and library for static files',
long_description = long_description,
author = 'Samuel Stauffer',
author_email = 'samuel@descolada.com',
url = 'http://github.com/samuel/squawk',
packages = ['squawk', 'squawk/parsers'],
license = "BSD",
scripts = ['bin/squawk'],
install_requires = ["pyparsing"],
classifiers = [
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)