forked from stevejalim/django-inlinecss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1.06 KB
/
setup.py
File metadata and controls
32 lines (31 loc) · 1.06 KB
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
from setuptools import setup
setup(
name='django-inlinecss',
version="0.1.0",
description='A Django app useful for inlining CSS (primarily for e-mails)',
long_description=open('README.md').read(),
author='Philip Kimmey',
maintainer='Steve Jalim',
maintainer_email='steve@somefantastic.co.uk',
license='BSD',
url='https://github.com/stevejalim/django-inlinecss',
download_url='https://github.com/stevejalim/django-inlinecss/downloads',
include_package_data=True,
zip_safe=False,
keywords=['html', 'css', 'inline', 'style', 'email'],
classifiers=[
'Environment :: Other Environment',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications :: Email',
'Topic :: Text Processing :: Markup :: HTML',
],
install_requires=[
'cssutils',
'BeautifulSoup'
],
packages=['django_inlinecss']
)