forked from endeepak/pungi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·26 lines (24 loc) · 905 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
#!/usr/bin/env python
from distutils.core import setup
description = 'Simple and powerful mocking framework with '\
'extensible assertion matchers'
setup(name='pungi',
version='0.1.3',
description=description,
long_description=description,
author='Deepak N',
author_email='endeep123@gmail.com',
maintainer='Deepak N',
maintainer_email='endeep123@gmail.com',
url='https://github.com/endeepak/pungi',
packages=['pungi'],
license='MIT',
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing'
]
)