-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
36 lines (30 loc) · 880 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
36
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
INSTALL_REQUIRES = [
'Wagtail>=2.0',
]
TESTING_REQUIRES = [
"beautifulsoup4==4.8.2",
"Django>=3.1,<3.2",
"pytest==4.3.0",
"pytest-django==3.4.7",
"pytest-pythonpath==0.7.3",
]
LINTING_REQUIRES = [
"flake8==3.7.5",
]
setup(
name="wagtail-nhsuk-frontend",
version="1.2.1",
description="NHSUK Frontend Styles for Wagtail",
author="Mike Monteith",
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},
)