-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (38 loc) · 1.09 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
from setuptools import setup, find_packages
setup(
name = 'templatefinder',
version = '0.1',
description = 'Simple template loader for Django',
long_description = '\n'.join((
'Django templatefinder',
'',
'Creates a set of available templates',
'',
)),
author = 'Honza Kral',
author_email='[email protected]',
license = 'BSD',
url='https://github.com/WhiskeyMedia/django-templatefinder',
packages = find_packages(
where = '.',
exclude = ('tests', ),
),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Django",
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires = [
'Django>=1.3',
],
test_requires = [
'nose',
'coverage',
],
test_suite = 'tests.run_tests.run_all'
)