File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed
Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ /dist
2+ * .egg-info
3+ * .pyc
4+ .ropeproject
5+ * .swp
Original file line number Diff line number Diff line change 1+ supermutes == 0.2.5
Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments