-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
27 lines (24 loc) · 791 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
import os
from setuptools import setup, find_packages
version = '0.2.2'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-templatepages',
version = version,
description = "Django app for mapping URLs to templates on the filesystem",
long_description = read('README.rst'),
classifiers = [],
keywords = "",
author = "Bryan Chow",
author_email = '',
url = 'https://github.com/bryanchow/django-templatepages',
download_url = 'https://github.com/bryanchow/django-templatepages/tarball/master',
license = 'BSD',
packages = find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data = True,
zip_safe = False,
install_requires = [
'django',
],
)