forked from ask/django-test-extensions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·27 lines (25 loc) · 822 Bytes
/
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
from setuptools import setup, find_packages
setup(
name = "django-test-extensions",
version = "0.7",
author = "Gareth Rushgrove",
author_email = "[email protected]",
url = "http://github.com/garethr/django-test-extensions/",
packages = find_packages('src'),
package_dir = {'':'src'},
license = "MIT License",
keywords = "django testing",
description = "A few classes to make testing django applications easier",
install_requires=[
'setuptools',
'BeautifulSoup',
'coverage',
],
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
]
)