This repository was archived by the owner on Jun 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 1.19 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (36 loc) · 1.19 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
33
34
35
36
37
from setuptools import setup, find_packages
setup(
name='django-inlinecss-redux',
description='A Django app useful for inlining CSS (primarily for e-mails)',
long_description=open('README.rst').read(),
author='Philip Kimmey',
author_email='philip@rover.com',
maintainer='Hugo Osvaldo Barrera',
maintainer_email='hugo@barrera.io',
license='BSD',
url='https://github.com/WhyNotHugo/django-inlinecss-redux',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
keywords=['html', 'css', 'inline', 'style', 'email'],
use_scm_version={
'version_scheme': 'post-release',
'write_to': 'django_inlinecss/version.py',
},
setup_requires=['setuptools_scm'],
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',
'pynliner',
'mock',
],
)