Skip to content

Commit e3e6f63

Browse files
committed
Initial packaging
1 parent 580815c commit e3e6f63

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/dist
2+
*.egg-info
3+
*.pyc
4+
.ropeproject
5+
*.swp

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
supermutes==0.2.5

setup.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/usr/bin/env python
2+
# # coding: utf-8
3+
4+
from setuptools import setup
5+
from abe import __version__
6+
7+
setup(
8+
name='ABE-mocks for python',
9+
description='Parse ABE files for usage within python tests',
10+
version=__version__,
11+
author='Carles Barrobés',
12+
author_email='carles@barrobes.com',
13+
url='https://github.com/apibyexample/abe-python',
14+
packages=['abe'],
15+
classifiers=[
16+
'Development Status :: 4 - Beta',
17+
'Intended Audience :: Developers',
18+
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
19+
'Operating System :: OS Independent',
20+
'Programming Language :: Python',
21+
'Topic :: Software Development :: Testing',
22+
],
23+
install_requires=[
24+
'supermutes>=0.2.5',
25+
]
26+
)

0 commit comments

Comments
 (0)