move package metadata to setup.cfg
This commit is contained in:
parent
171aabc87d
commit
024f0d384c
14 changed files with 142 additions and 151 deletions
|
|
@ -1,21 +1,3 @@
|
|||
from setuptools import find_packages
|
||||
from setuptools import setup
|
||||
|
||||
with open("README.rst", encoding="utf8") as f:
|
||||
readme = f.read()
|
||||
|
||||
setup(
|
||||
name="js_example",
|
||||
version="1.0.0",
|
||||
url="https://flask.palletsprojects.com/patterns/jquery/",
|
||||
license="BSD",
|
||||
maintainer="Pallets team",
|
||||
maintainer_email="contact@palletsprojects.com",
|
||||
description="Demonstrates making Ajax requests to Flask.",
|
||||
long_description=readme,
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
install_requires=["flask"],
|
||||
extras_require={"test": ["pytest", "coverage", "blinker"]},
|
||||
)
|
||||
setup()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue