-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (26 loc) · 1.08 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
from setuptools import setup
from os import path
# Read the content of the README.md file as long_description
root_directory = path.abspath(path.dirname(__file__))
with open(path.join(root_directory, 'README.md'), encoding='utf-8') as readme_file:
readme_content = readme_file.read()
# Package Definition
setup(
name='lightgallery',
version='0.5',
author='Gauthier Provost',
author_email='[email protected]',
description='Markdown extension to wrap images in lightbox/lightgallery',
long_description=readme_content,
long_description_content_type='text/markdown; charset=UTF-8; variant=GFM',
py_modules=['lightgallery'],
install_requires = ['markdown>=3.0'],
classifiers=['Topic :: Text Processing :: Markup :: HTML'],
license='MIT License',
url='https://github.com/g-provost/lightgallery-markdown',
project_urls={
'Source': 'https://github.com/g-provost/lightgallery-markdown',
'Documentation': 'https://github.com/g-provost/lightgallery-markdown',
'Tracker': 'https://github.com/g-provost/lightgallery-markdown/issues'
}
)