summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control69
1 files changed, 69 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..58f92cd
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,69 @@
+Source: factory-boy
+Section: python
+Priority: optional
+Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
+Uploaders: Thomas Goirand <zigo@debian.org>,
+Build-Depends: debhelper (>= 9),
+ dh-python,
+ openstack-pkg-tools,
+ python-all,
+ python-setuptools,
+ python-sphinx,
+ python3-all,
+ python3-setuptools
+Build-Depends-Indep: python-django,
+ python-mock,
+ python-unittest2,
+ python-wheel,
+ python3-django,
+ python3-mock,
+ python3-wheel,
+Standards-Version: 3.9.6
+Vcs-Browser: https://anonscm.debian.org/cgit/openstack/factory-boy.git/
+Vcs-Git: https://anonscm.debian.org/git/openstack/factory-boy.git
+Homepage: https://github.com/rbarrois/factory_boy
+
+Package: python-factory-boy
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
+Suggests: python-factory-boy-doc
+Description: test fixtures replacement based on factory_girl for Ruby - Python 2.x
+ factory_boy is a fixtures replacement based on thoughtbot's factory_girl. Like
+ factory_girl it has a straightforward definition syntax, support for multiple
+ build strategies (saved instances, unsaved instances, attribute dicts, and
+ stubbed objects), and support for multiple factories for the same class,
+ including factory inheritance.
+ .
+ Django support is included, and support for other ORMs can be easily added.
+ .
+ This package provides the Python 2.x module.
+
+Package: python3-factory-boy
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
+Suggests: python-factory-boy-doc
+Description: test fixtures replacement based on factory_girl for Ruby - Python 3.x
+ factory_boy is a fixtures replacement based on thoughtbot's factory_girl. Like
+ factory_girl it has a straightforward definition syntax, support for multiple
+ build strategies (saved instances, unsaved instances, attribute dicts, and
+ stubbed objects), and support for multiple factories for the same class,
+ including factory inheritance.
+ .
+ Django support is included, and support for other ORMs can be easily added.
+ .
+ This package provides the Python 3.x module.
+
+Package: python-factory-boy-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${shlibs:Depends}, ${sphinxdoc:Depends}
+Description: test fixtures replacement based on factory_girl for Ruby - doc
+ factory_boy is a fixtures replacement based on thoughtbot's factory_girl. Like
+ factory_girl it has a straightforward definition syntax, support for multiple
+ build strategies (saved instances, unsaved instances, attribute dicts, and
+ stubbed objects), and support for multiple factories for the same class,
+ including factory inheritance.
+ .
+ Django support is included, and support for other ORMs can be easily added.
+ .
+ This package provides the documentation.