|
|
@ -2,6 +2,8 @@ |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
import io |
|
|
|
import io |
|
|
|
import re |
|
|
|
import re |
|
|
|
|
|
|
|
from collections import OrderedDict |
|
|
|
|
|
|
|
|
|
|
|
from setuptools import setup |
|
|
|
from setuptools import setup |
|
|
|
|
|
|
|
|
|
|
|
with io.open('README.rst', 'rt', encoding='utf8') as f: |
|
|
|
with io.open('README.rst', 'rt', encoding='utf8') as f: |
|
|
@ -14,6 +16,11 @@ setup( |
|
|
|
name='Flask', |
|
|
|
name='Flask', |
|
|
|
version=version, |
|
|
|
version=version, |
|
|
|
url='https://www.palletsprojects.com/p/flask/', |
|
|
|
url='https://www.palletsprojects.com/p/flask/', |
|
|
|
|
|
|
|
project_urls=OrderedDict(( |
|
|
|
|
|
|
|
('Documentation', 'http://flask.pocoo.org/docs/'), |
|
|
|
|
|
|
|
('Code', 'https://github.com/pallets/pallets-sphinx-themes'), |
|
|
|
|
|
|
|
('Issue tracker', 'https://github.com/pallets/pallets-sphinx-themes/issues'), |
|
|
|
|
|
|
|
)), |
|
|
|
license='BSD', |
|
|
|
license='BSD', |
|
|
|
author='Armin Ronacher', |
|
|
|
author='Armin Ronacher', |
|
|
|
author_email='armin.ronacher@active-4.com', |
|
|
|
author_email='armin.ronacher@active-4.com', |
|
|
|