-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (25 loc) · 1 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
from setuptools import setup, find_packages
LONG_DESCRIPTION = '''Simple Compass integration for Django.'''
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
KEYWORDS = 'django sass compass css'
setup(name='django-orienteer',
version='0.2',
description='Django Compass App',
long_description=LONG_DESCRIPTION,
author='Drew Yeaton',
author_email='[email protected]',
url='http://github.com/sentineldesign/django-orienteer/',
packages=find_packages(),
platforms = ['Platform Independent'],
license = 'Apache License, Version 2.0',
classifiers = CLASSIFIERS,
keywords = KEYWORDS,
)