-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (64 loc) · 1.84 KB
/
setup.py
File metadata and controls
73 lines (64 loc) · 1.84 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
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
66
67
68
69
70
71
72
73
import re
from io import open
from setuptools import setup, find_packages
README = 'README.rst'
CHANGES = 'CHANGES.rst'
VERSION_FILE = 'comparator/__init__.py'
def read(path):
with open(path, encoding='utf-8') as f:
return f.read()
def find_version():
version_file = read(VERSION_FILE)
version_match = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file,
re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
setup(
name='comparator',
version=find_version(),
author='Aaron Biller',
author_email='aaronbiller@gmail.com',
description='Utility for comparing results between data sources',
long_description=read(README) + '\n' + read(CHANGES),
license='Apache 2.0',
keywords='utility compare database',
url='https://github.com/aaronbiller/comparator',
packages=find_packages(),
tests_require=[
'pytest',
'pytest-cov',
'mock',
'spackl'
],
install_requires=[
'future==0.16.0',
'google-cloud-bigquery==1.5.0',
'psycopg2-binary==2.7.5',
'PyYAML',
'SQLAlchemy==1.2.11',
'sqlalchemy-redshift==0.7.1',
'pandas>=0.22.0',
'pytest-runner==4.2',
],
extras_require={
':python_version == "2.7"': [
'pathlib2==2.3.2',
],
},
include_package_data=True,
scripts=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Database',
'Topic :: Utilities',
],
)