-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.01 KB
/
setup.py
File metadata and controls
42 lines (37 loc) · 1.01 KB
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
from setuptools import setup, find_packages
import os
version = '1.3.0' # the number version of the package is the same than less.js version
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (
read('README.txt')
+ '\n' +
read('js', 'lesscss', 'test_less.txt')
+ '\n' +
read('CHANGES.txt'))
setup(
name='js.lesscss',
version=version,
description="Fanstatic packaging of less",
long_description=long_description,
classifiers=[],
keywords='',
author='Stephane Klein',
author_email='stephane@harobed.org',
license='BSD',
packages=find_packages(), namespace_packages=['js'],
include_package_data=True,
zip_safe=False,
install_requires=[
'fanstatic',
'setuptools',
],
entry_points={
'fanstatic.libraries': [
'less = js.lesscss:library',
],
'console_scripts': [
'jslessc = js.lesscss:main',
],
},
)