This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
65 lines (56 loc) · 1.86 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
from bqx._func_generator import generate_funcpy
here = os.path.abspath(os.path.dirname(__file__))
if 'build' in sys.argv:
import pypandoc
with open(os.path.join(here, 'README.md')) as f:
readme = pypandoc.convert(f.read(), 'rst', format='md')
with open(os.path.join(here, 'README.rst'), 'w') as f:
f.write(readme)
else:
readme = ''
if 'install' in sys.argv or 'test' in sys.argv:
funcpy_in = os.path.join(here, 'bqx/_func.py')
funcpy = os.path.join(here, 'bqx/func.py')
generate_funcpy(funcpy_in, funcpy)
__version__ = '0.4.2'
__license__ = 'BSD License'
__classifiers__ = [
'Development Status :: 7 - Inactive',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: SQL',
'Topic :: Database',
'Topic :: Software Development :: Code Generators',
]
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
pytest.main(self.test_args)
setup(
name='bqx',
version=__version__,
url='https://github.com/fuller-inc/bqx',
description='Query generator for Google BigQuery and other SQL environments',
long_description=readme,
classifiers=__classifiers__,
packages=find_packages(exclude=['test*']),
license=__license__,
include_package_data=True,
test_suite='tests',
tests_require=['pytest'],
cmdclass={'test': PyTest},
)