-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (23 loc) · 835 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
from setuptools import setup, find_packages
import sys, os
setup(name='MiniMockTest',
version='0.5',
description="Custom unittest TestCase that wraps minimock",
long_description="""\
Custom unittest TestCase that wraps minimock for easier use """,
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='minimock mock mocking test unittest TestCase MockTestCase',
author='Hatem Nassrat',
author_email='hnassrat@gmail.com',
url='http://pykler.github.com/MiniMockTest/',
license='MIT',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=True,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)