move package metadata to setup.cfg

This commit is contained in:
David Lord 2020-04-04 14:36:09 -07:00
parent 171aabc87d
commit 024f0d384c
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
14 changed files with 142 additions and 151 deletions

View file

@ -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="flaskr",
version="1.0.0",
url="https://flask.palletsprojects.com/tutorial/",
license="BSD",
maintainer="Pallets team",
maintainer_email="contact@palletsprojects.com",
description="The basic blog app built in the Flask tutorial.",
long_description=readme,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=["flask"],
extras_require={"test": ["pytest", "coverage"]},
)
setup()