forked from bkad/python-stylus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 774 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
import io
import sys
with io.open('README.md') as description_file:
long_description = description_file.read()
setup(
name="stylus",
version="0.1.0",
author="Kevin Le",
description="A bridge to the Stylus css compiler",
packages=["stylus"],
package_dir={"stylus": "stylus"},
package_data={
"stylus": ["runner.js", "compiler.js"]
},
long_description=long_description,
url="https://github.com/bkad/python-stylus",
author_email="[email protected]",
license="MIT License",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
],
install_requires=["PyExecJs"]
)