2018-04-13 02:06:02 +08:00
|
|
|
import io
|
|
|
|
|
2019-06-01 23:35:03 +08:00
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
2018-04-13 02:06:02 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
with io.open("README.rst", "rt", encoding="utf8") as f:
|
2018-04-13 02:06:02 +08:00
|
|
|
readme = f.read()
|
|
|
|
|
|
|
|
setup(
|
2019-05-07 03:39:41 +08:00
|
|
|
name="js_example",
|
|
|
|
version="1.0.0",
|
|
|
|
url="http://flask.pocoo.org/docs/patterns/jquery/",
|
|
|
|
license="BSD",
|
|
|
|
maintainer="Pallets team",
|
|
|
|
maintainer_email="contact@palletsprojects.com",
|
|
|
|
description="Demonstrates making Ajax requests to Flask.",
|
2018-04-13 02:06:02 +08:00
|
|
|
long_description=readme,
|
|
|
|
packages=find_packages(),
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
2019-05-07 03:39:41 +08:00
|
|
|
install_requires=["flask"],
|
|
|
|
extras_require={"test": ["pytest", "coverage", "blinker"]},
|
2018-04-13 02:06:02 +08:00
|
|
|
)
|