-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.43 KB
/
setup.py
File metadata and controls
49 lines (45 loc) · 1.43 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
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"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",
"Topic :: Database",
"Topic :: Software Development",
"Topic :: Software Development :: Testing",
]
install_requires = []
if sys.version_info < (2, 7):
install_requires.append('unittest2')
setup(
name='testing.common.database',
version='2.0.2',
description='utilities for testing.* packages',
long_description=open('README.rst').read(),
classifiers=classifiers,
keywords=[],
author='Takeshi Komiya',
author_email='i.tkomiya@gmail.com',
url='https://github.com/tk0miya/testing.common.database',
license='Apache License 2.0',
packages=find_packages('src'),
package_dir={'': 'src'},
package_data={'': ['buildout.cfg']},
include_package_data=True,
install_requires=install_requires,
extras_require=dict(
testing=[
'nose',
],
),
test_suite='nose.collector',
namespace_packages=['testing', 'testing.common'],
)