-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (41 loc) · 1.55 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
41
42
43
44
45
# vim: fileencoding=utf-8 tw=100 expandtab ts=4 sw=4 :
#
# pylesswrap
# (c) 2014 Rémy Sanchez <remy.sanchez@activkonnect.com>
#
# This work is free. You can redistribute it and/or modify it under the
# terms of the Do What The Fuck You Want To Public License, Version 2,
# as published by Sam Hocevar. See the COPYING file for more details.
import os
import codecs
from setuptools import setup
with codecs.open(os.path.join(os.path.dirname(__file__), 'README.rst'), 'r') as readme:
README = readme.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='pylesswrap',
version='0.1.4',
packages=['pylesswrap'],
include_package_data=True,
license='WTFPL',
description='A Python wrapper around LESS.js, destined to help compiling LESS files from '
'Django.',
long_description=README,
url='https://github.com/Xowap/pylesswrap',
author='Rémy Sanchez',
author_email='remy.sanchez@activkonnect.com',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: Other/Proprietary License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
)