forked from peterbe/premailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (62 loc) · 2.12 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import codecs
import os.path
import re
# Prevent spurious errors during `python setup.py test`, a la
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html:
try:
import multiprocessing
except ImportError:
pass
from setuptools import setup, find_packages
README = os.path.join(os.path.dirname(__file__), 'README.md')
long_description = open(README).read().strip() + "\n\n"
def md2stx(s):
import re
s = re.sub(':\n(\s{8,10})', r'::\n\1', s)
return s
long_description = md2stx(long_description)
def find_version(*file_paths):
version_file = codecs.open(os.path.join(os.path.dirname(__file__),
*file_paths), 'r').read()
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
setup(
name='premailer',
version=find_version('premailer', '__init__.py'),
description="Turns CSS blocks into style attributes",
long_description=long_description,
keywords='html lxml email mail style',
author='Peter Bengtsson',
author_email='[email protected]',
url='http://github.com/peterbe/premailer',
download_url='http://github.com/peterbe/premailer',
license='Python',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Other/Nonlisted Topic",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(),
include_package_data=True,
test_suite='nose.collector',
tests_require=['Nose'],
zip_safe=True,
install_requires=[
'lxml',
'cssselect',
],
entry_points="""
# -*- Entry points: -*-
""",
)