This repository was archived by the owner on Apr 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
107 lines (86 loc) · 2.79 KB
/
setup.py
File metadata and controls
107 lines (86 loc) · 2.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/usr/bin/env python
import os
import fnmatch
import subprocess
## prepare to run PyTest as a command
from distutils.core import Command
from setuptools import setup, find_packages
from version import get_git_version
VERSION, SOURCE_LABEL = get_git_version()
PROJECT = 'kvlayer_mysql'
URL = 'http://diffeo.com'
AUTHOR = 'Diffeo, Inc.'
AUTHOR_EMAIL = 'support@diffeo.com'
DESC = 'table-oriented abstraction layer over key-value stores'
def read_file(file_name):
file_path = os.path.join(
os.path.dirname(__file__),
file_name
)
return open(file_path).read()
def recursive_glob(treeroot, pattern):
results = []
for base, dirs, files in os.walk(treeroot):
goodfiles = fnmatch.filter(files, pattern)
results.extend(os.path.join(base, f) for f in goodfiles)
return results
def recursive_glob_with_tree(treeroot, pattern):
results = []
for base, dirs, files in os.walk(treeroot):
goodfiles = fnmatch.filter(files, pattern)
one_dir_results = []
for f in goodfiles:
one_dir_results.append(os.path.join(base, f))
results.append((base, one_dir_results))
return results
def _myinstall(pkgspec):
subprocess.check_call(['pip', 'install', pkgspec])
class PyTest(Command):
'''run py.test'''
description = 'runs py.test to execute all tests'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
if self.distribution.install_requires:
for ir in self.distribution.install_requires:
_myinstall(ir)
if self.distribution.tests_require:
for ir in self.distribution.tests_require:
_myinstall(ir)
errno = subprocess.call(['py.test', '-n', '3', '-s', 'kvlayer/tests', '--runslow', '--runperf'])
raise SystemExit(errno)
setup(
name=PROJECT,
version=VERSION,
description=DESC,
long_description=read_file('README.md'),
author=AUTHOR,
license='MIT/X11 license http://opensource.org/licenses/MIT',
author_email=AUTHOR_EMAIL,
url=URL,
packages=find_packages(),
cmdclass={
'test': PyTest,
},
# We can select proper classifiers later
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License', ## MIT/X11 license http://opensource.org/licenses/MIT
],
install_requires=[
'yakonfig >= 0.6.0',
'mysql-connector-python',
],
extras_require={
'unittest': ['pytest', 'pytest-diffeo'],
},
entry_points={
'kvlayer.impl': ['mysql = kvlayer_mysql:MysqlTableStorage'],
'kvlayer.test_config': ['mysql = kvlayer_mysql._test_config:test_config'],
},
include_package_data=True,
)