forked from andreyfedoseev/django-coffeescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (26 loc) · 925 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
31
32
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-coffeescript",
packages = find_packages(),
version = "0.4",
author = "Andrey Fedoseev",
author_email = "[email protected]",
url = "https://github.com/andreyfedoseev/django-coffeescript",
description = "Django template tags to compile CoffeeScript",
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"],
)