Skip to content

Commit 7356cdc

Browse files
author
Rocky Meza
committed
Beefed up setup.py
1 parent cfb56b4 commit 7356cdc

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

setup.py

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
import subprocess
44
import os
55

6-
__doc__ = """
7-
Makes it easier to use PySCSS in Django.
8-
"""
6+
__doc__ = "Makes it easier to use PySCSS in Django."
97

108

119
def read(fname):
@@ -39,6 +37,10 @@ def get_version():
3937
setup(
4038
name='django-pyscss',
4139
version=get_version(),
40+
author="Fusionbox, Inc.",
41+
author_email="[email protected]",
42+
url="https://github.com/fusionbox/django-pyscss",
43+
keywords="django css scss sass pyscss compressor",
4244
description=__doc__,
4345
long_description=read('README.rst'),
4446
packages=[package for package in find_packages() if package.startswith('django_pyscss')],
@@ -47,4 +49,15 @@ def get_version():
4749
zip_safe=False,
4850
include_package_data=True,
4951
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+
],
5063
)

0 commit comments

Comments
 (0)