-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 871 Bytes
/
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
from setuptools import setup, find_packages
install_requires = [
]
tests_require = install_requires + [
'nose', 'nosexcover'
]
setup(
name='vmock',
description='Advanced Mock library following record and replay approach.',
version='0.1',
author='Volodymyr Burenin',
author_email='[email protected]',
maintainer='Volodymyr Burenin',
maintainer_email='[email protected]',
packages=find_packages(),
install_requires=install_requires,
tests_require=tests_require,
test_suite='nose.collector',
extras_require={
'test': tests_require,
},
url='https://github.com/vburenin/vmock',
license='MIT',
classifiers=['License :: MIT',
'Development Status :: 4 - Beta/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.4'],
)