forked from roverdotcom/django-inlinecss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.14 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
from setuptools import setup, find_packages
setup(
name='django-inlinecss',
version="0.1.1-indev",
description='A Django app useful for inlining CSS (primarily for e-mails)',
long_description=open('README.md').read(),
author='Philip Kimmey',
author_email='[email protected]',
maintainer='Philip Kimmey',
maintainer_email='[email protected]',
license='BSD',
url='https://github.com/roverdotcom/django-inlinecss',
download_url='https://github.com/roverdotcom/django-inlinecss/releases',
packages=find_packages(),
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=[
'Django',
'cssutils',
'BeautifulSoup',
'mock'
]
)