-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
46 lines (41 loc) · 1.05 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import os.path
from setuptools import setup, find_packages
__version__ = '1.4.0'
readme_path = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(readme_path) as fp:
long_description = fp.read()
setup(
name='squabble',
version=__version__,
description='An extensible linter for SQL',
long_description=long_description,
author='Erik Price',
url='https://github.com/erik/squabble',
packages=find_packages(),
entry_points={
'console_scripts': [
'squabble = squabble.__main__:main',
],
},
python_requires='>=3.5',
license='GPLv3+',
setup_requires=[
'pytest-runner',
],
install_requires=[
'pglast==1.4',
'docopt==0.6.2',
'colorama==0.4.1'
],
tests_require=[
'pytest',
'pytest-runner',
'pytest-cov',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: SQL',
'Topic :: Utilities',
]
)