This repository has been archived by the owner on Dec 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·63 lines (57 loc) · 1.74 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import codecs
from setuptools import setup, find_packages
import bqdm
with codecs.open('README.rst', 'rb', 'utf-8') as readme:
long_description = readme.read()
setup(
name='BigQuery-DatasetManager',
version=bqdm.__version__,
description='BigQuery-DatasetManager is a simple file-based CLI management tool '
'for BigQuery Datasets.',
long_description=long_description,
url='https://github.com/laughingman7743/BigQuery-DatasetManager/',
author='laughingman7743',
author_email='laughingman7743@gmail.com',
license='MIT License',
packages=find_packages(),
package_data={
'': ['*.rst'],
},
install_requires=[
'future',
'pytz',
'click>=6.0',
'PyYAML>=3.12',
'google-cloud-bigquery==1.1.0',
'google-api-python-client>=1.7.0',
'enum34;python_version<="3.3"',
'python-dateutil>=2.7.0',
],
tests_require=[
'pytest>=3.5',
'pytest-cov',
'pytest-flake8>=1.0.1',
],
entry_points={
'console_scripts': [
'bqdm = bqdm.cli:cli',
],
},
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Database',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)