-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 795 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 795 Bytes
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
#!/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.4',
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'
]
)