forked from dziegler/django-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.16 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
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
setup(
name = "django-css",
version = "2.3.1",
description='django-css provides an easy way to use CSS compilers with Django projects, and an automated system for compressing CSS and JavaScript files',
url = 'http://github.com/dziegler/django-css',
license = 'BSD',
long_description=README,
author = 'David Ziegler',
author_email = '[email protected]',
packages = [
'compressor',
'compressor.conf',
'compressor.filters',
'compressor.filters.jsmin',
'compressor.templatetags',
],
package_data = {'compressor': ['templates/compressor/*.html']},
requires = [
'BeautifulSoup',
],
zip_safe = False,
classifiers = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)