-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (42 loc) · 1.14 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import functools
from setuptools import setup
def read(filename):
try:
with open(filename, 'r', encoding='utf-8') as f:
return f.read()
except IOError:
return ''
readme = functools.partial(read, 'README.rst')
setup(
name='crate-qa',
author='Crate.io Team',
author_email='[email protected]',
url='https://github.com/crate/crate-qa',
description='A collection of quality ensurance tests for CrateDB',
long_description=readme(),
entry_points={
'console_scripts': []
},
package_dir={'': 'src'},
packages=['crate.qa'],
install_requires=[
'crate>=1.0.0.dev2',
'cr8>=0.25.0',
'Cython',
'asyncpg>=0.21',
'pyodbc',
'psycopg2-binary>=2.7.5',
'psycopg[binary,pool]',
],
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
use_scm_version=True,
setup_requires=['setuptools_scm']
)