-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 954 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
32
33
34
35
36
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='mockbcrypt',
version='0.2.3',
description='A bcrypt mock plugin for nosetests',
long_description=open('README.rst').read(),
author=', '.join([
'Bone Yao',
]),
url='https://github.com/boneyao/mockbcrypt',
packages=['mockbcrypt', ],
install_requires=[
'nose',
'mock'
],
license='MIT',
entry_points={
'nose.plugins.0.10': [
'mockbcrypt = mockbcrypt.plugin:MockBcryptPlugin',
]
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Testing',
'Environment :: Console',
],
)