3
3
import subprocess
4
4
import os
5
5
6
- __doc__ = """
7
- Makes it easier to use PySCSS in Django.
8
- """
6
+ __doc__ = "Makes it easier to use PySCSS in Django."
9
7
10
8
11
9
def read (fname ):
@@ -39,6 +37,10 @@ def get_version():
39
37
setup (
40
38
name = 'django-pyscss' ,
41
39
version = get_version (),
40
+ author = "Fusionbox, Inc." ,
41
+
42
+ url = "https://github.com/fusionbox/django-pyscss" ,
43
+ keywords = "django css scss sass pyscss compressor" ,
42
44
description = __doc__ ,
43
45
long_description = read ('README.rst' ),
44
46
packages = [package for package in find_packages () if package .startswith ('django_pyscss' )],
@@ -47,4 +49,15 @@ def get_version():
47
49
zip_safe = False ,
48
50
include_package_data = True ,
49
51
test_suite = 'testproject.runtests.runtests' ,
52
+ classifiers = [
53
+ 'Development Status :: 4 - Beta' ,
54
+ 'Framework :: Django' ,
55
+ 'Intended Audience :: Developers' ,
56
+ 'License :: OSI Approved :: BSD License' ,
57
+ 'Topic :: Internet :: WWW/HTTP' ,
58
+ 'Programming Language :: Python' ,
59
+ 'Programming Language :: Python :: 2.6' ,
60
+ 'Programming Language :: Python :: 2.7' ,
61
+ 'Programming Language :: Python :: 3.3' ,
62
+ ],
50
63
)
0 commit comments