-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 935 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
28
29
30
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
CHANGES = read('CHANGES.rst')
setup(
name = "django-coldbrew",
packages = find_packages(),
version = "0.5",
author = "slashRoot Tech Group",
author_email = "[email protected]",
url = "https://github.com/SlashRoot/django-coldbrew",
description = "Django Template Tags to compile CoffeeScript inline or from a file.",
long_description = "\n\n".join([README, CHANGES]),
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
keywords = ["coffeescript"],
)