-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1023 Bytes
/
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
import io
from setuptools import setup, find_packages
with io.open('README.md', 'rt', encoding="utf8") as f:
readme = f.read()
setup(
author=u'Javier Lopez',
author_email='[email protected]',
description='Adds support for Google Tag Manager to Lektor CMS',
keywords='Lektor plugin static-site google-tag-manager',
license='BSD',
long_description=readme,
long_description_content_type='text/markdown',
name='lektor-google-tag-manager',
packages=find_packages(),
py_modules=['lektor_google_tag_manager'],
url='http://github.com/JavierLopezMunoz/lektor-google-tag-manager/',
version='0.1',
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Lektor',
'Environment :: Web Environment',
'Environment :: Plugins',
'License :: OSI Approved :: BSD License',
],
entry_points={
'lektor.plugins': [
'google-tag-manager = lektor_google_tag_manager:GoogleTagManagerPlugin',
]
},
)