-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.07 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.07 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
long_description = 'BDD / TDD assertion library for Python',
if os.path.exists('README.rst'):
long_description = open('README.rst').read()
setup(
name='robber',
version='1.1.2',
description='BDD / TDD assertion library for Python',
long_description=long_description,
author='Tao Liang',
author_email='tao@synapse-ai.com',
url='https://github.com/vesln/robber.py',
packages=[
'robber',
'robber.matchers',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing'
],
install_requires=[
'mock',
'termcolor'
],
tests_require=[
'nose'
],
)