-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
35 lines (29 loc) · 851 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
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
INSTALL_REQUIRES = [
'Wagtail>=5.2',
]
TESTING_REQUIRES = [
"beautifulsoup4==4.12.3",
"Django>=4.2",
"pytest==8.2.1",
"pytest-django==4.8.0",
]
LINTING_REQUIRES = [
"flake8>=5.0.4,<7.0.0",
]
setup(
name="wagtail-nhsuk-frontend",
version="1.5.3",
description="NHSUK Frontend Styles for Wagtail",
author="Brad Morton",
author_email="<[email protected]>",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nhsuk/wagtail-nhsuk-frontend",
install_requires=INSTALL_REQUIRES,
packages=find_packages(),
include_package_data=True,
extras_require={"testing": TESTING_REQUIRES, "linting": LINTING_REQUIRES},
)