-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
37 lines (36 loc) · 1.27 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
from setuptools import setup, find_packages
setup(
name='inlinestyler',
version=__import__('inlinestyler').__version__,
description='Inlines external CSS into HTML elements.',
long_description=open('README.rst').read(),
author='Dave Cranwell',
maintainer='Dan Langer',
maintainer_email='[email protected]',
license='BSD',
url='http://github.com/dlanger/inlinestyler',
download_url='http://github.com/dlanger/inlinestyler/downloads',
include_package_data=True,
zip_safe=False,
keywords=['html', 'css', 'inline', 'style', 'email'],
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.4',
'Topic :: Communications :: Email',
'Topic :: Text Processing :: Markup :: HTML',
],
install_requires=[
'cssutils',
'lxml',
'requests>=1.0.0',
]
)