-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
31 lines (26 loc) · 890 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
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-less",
packages=find_packages(),
version="0.7.2",
author="Andrey Fedoseev",
author_email="[email protected]",
url="https://github.com/andreyfedoseev/django-less",
description="Django template tags to compile LESS into CSS",
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=["less", "css"],
)