forked from paulocheque/django-dynamic-fixture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (39 loc) · 1.34 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
34
35
36
37
38
39
40
41
42
43
44
45
46
#from distutils.core import setup
from setuptools import setup, find_packages
# http://guide.python-distribute.org/quickstart.html
# python setup.py sdist
# python setup.py register
# python setup.py sdist upload
# pip install django-dynamic-fixture
# pip install django-dynamic-fixture --upgrade --no-deps
# Manual upload to PypI
# http://pypi.python.org/pypi/django-dynamic-fixture
# Go to 'edit' link
# Update version and save
# Go to 'files' link and upload the file
tests_require = [
'nose==1.1.2',
'django-nose==0.1.3',
]
install_requires = [
]
setup(name='django-dynamic-fixture',
url='https://github.com/paulocheque/django-dynamic-fixture',
author="paulocheque",
author_email='[email protected]',
keywords='python django testing fixture',
description='A full library to create dynamic model instances for testing purposes.',
license='MIT',
classifiers=[
'Framework :: Django',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
version='1.6.3',
install_requires=install_requires,
tests_require=tests_require,
test_suite='runtests.runtests',
extras_require={'test': tests_require},
entry_points={ 'nose.plugins': ['queries = queries:Queries', 'ddf_setup = ddf_setup:DDFSetup'] },
packages=find_packages(),
)