mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Merge 7a026f548c into 01d536d7c9
This commit is contained in:
commit
976c0deaf5
1 changed files with 3 additions and 2 deletions
5
setup.py
5
setup.py
|
|
@ -1,6 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
from os import walk
|
from os import walk
|
||||||
from os.path import join, relpath
|
from os.path import join, relpath
|
||||||
|
from io import open
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
|
|
@ -17,8 +18,8 @@ entry_points = {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
README = open('README.rst').read()
|
README = open('README.rst', 'r', encoding='utf-8').read()
|
||||||
CHANGELOG = open('docs/changelog.rst').read()
|
CHANGELOG = open('docs/changelog.rst', 'r', encoding='utf-8').read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='pelican',
|
name='pelican',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue