forked from creativecommons/ccos-website-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (39 loc) · 1.06 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
36
37
38
39
40
41
42
43
44
# Standard library
import ast
import io
import re
# Third-party
from setuptools import find_packages, setup
with io.open("README.md", "rt", encoding="utf8") as f:
readme = f.read()
_description_re = re.compile(r"description\s+=\s+(?P<description>.*)")
with open("lektor_checkfile.py", "rb") as f:
description = str(
ast.literal_eval(
_description_re.search(f.read().decode("utf-8")).group(1)
)
)
setup(
author="mayank",
author_email="mayank.nader11@gmail.com",
description=description,
keywords="Lektor plugin",
license="MIT",
long_description=readme,
long_description_content_type="text/markdown",
name="lektor-checkfile",
packages=find_packages(),
py_modules=["lektor_checkfile"],
# url='[link to your repository]',
version="0.1",
classifiers=[
"Environment :: Plugins",
"Framework :: Lektor",
"Programming Language :: Python :: 3",
],
entry_points={
"lektor.plugins": [
"checkfile = lektor_checkfile:CheckfilePlugin",
]
},
)