-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
25 lines (20 loc) · 914 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
INSTALL_REQUIRES = ["django>=3.2", "Wagtail>=5.0.0", " wagtail < 6.0"]
TESTING_REQUIRES = ["pytest==6.2.5", "pytest-django==3.5.1", "pytest-pythonpath==0.7.3", "factory-boy>=3.2"]
LINTING_REQUIRES = ["black==20.8b1", "flake8==3.7.8", "flake8-black==0.1.1", "isort==5.7.0"]
setup(
name="wagtail-streamfield-index",
version="1.0.0",
description="Indexing for Wagtail streamfields",
author="Mike Monteith",
author_email="<[email protected]>",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nhsuk/wagtail-streamfield-index",
install_requires=INSTALL_REQUIRES,
packages=find_packages(),
include_package_data=True,
extras_require={"testing": TESTING_REQUIRES, "linting": LINTING_REQUIRES},
)