File: setup.py

package info (click to toggle)
libsass-python 0.23.0-0.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 508 kB
  • sloc: python: 2,991; ansic: 620; makefile: 153
file content (11 lines) | stat: -rw-r--r-- 196 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
from setuptools import setup


setup(
    name='testpkg',
    packages=['testpkg'],
    sass_manifests={
        'testpkg': ('static/scss', 'static/css'),
    },
    setup_requires=['libsass'],
)