-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 840 Bytes
/
setup.py
File metadata and controls
40 lines (34 loc) · 840 Bytes
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
#
# setup.py
#
"""
A pure-python stylus to CSS converter
"""
from setuptools import setup
import pystylus
PLATFORMS = 'all'
REQUIRES = [
'ply==3.4',
]
CLASSIFIERS = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
]
setup(
name='pystylus',
packages=['pystylus', 'pystylus.parsing_rules'],
scripts=['scripts/pystylus'],
version=pystylus.__version__,
author=pystylus.__author__,
author_email=pystylus.__contact__,
license=pystylus.__license__,
url=pystylus.__url__,
platforms=PLATFORMS,
install_requires=REQUIRES,
classifiers=CLASSIFIERS,
)