forked from berinhard/model_mommy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1 KB
/
setup.py
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
28
29
30
31
32
33
import setuptools
from os.path import join, dirname
import model_mommy
setuptools.setup(
name="model_mommy",
version=model_mommy.__version__,
packages=["model_mommy"],
include_package_data=True, # declarations in MANIFEST.in
install_requires=open(join(dirname(__file__), 'requirements.txt')).readlines(),
tests_require=[
'django<1.5',
'pil',
'tox',
],
test_suite='runtests.runtests',
author="vandersonmota",
author_email="[email protected]",
url="http://github.com/vandersonmota/model_mommy",
license="Apache 2.0",
description="Smart object creation facility for Django.",
long_description=open(join(dirname(__file__), "README.rst")).read(),
keywords="django testing factory python",
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development',
],
)