Skip to content

Commit

Permalink
Initial packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
txels committed Sep 1, 2014
1 parent 580815c commit e3e6f63
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
@@ -0,0 +1,5 @@
/dist
*.egg-info
*.pyc
.ropeproject
*.swp
1 change: 1 addition & 0 deletions requirements.txt
@@ -0,0 +1 @@
supermutes==0.2.5
26 changes: 26 additions & 0 deletions setup.py
@@ -0,0 +1,26 @@
#!/usr/bin/env python
# # coding: utf-8

from setuptools import setup
from abe import __version__

setup(
name='ABE-mocks for python',
description='Parse ABE files for usage within python tests',
version=__version__,
author='Carles Barrobés',
author_email='carles@barrobes.com',
url='https://github.com/apibyexample/abe-python',
packages=['abe'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
],
install_requires=[
'supermutes>=0.2.5',
]
)

0 comments on commit e3e6f63

Please sign in to comment.