forked from torchbox/wagtail-makeup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (37 loc) · 1.14 KB
/
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
37
38
39
40
41
42
43
#!/usr/bin/env python
"""
Installs wagtailmakeup.
"""
from os import path
from setuptools import find_packages, setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
testing_extras = [
"coverage>=4.5",
]
setup(
name="wagtailmakeup",
version="1.1.0",
description="Wagtail Makeup",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kevinhowbrook/wagtail-makeup",
author="Kevin Howbrook",
license="MIT",
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
install_requires=["wagtail>=5.2", "python-unsplash>=1.1.0"],
extras_require={"testing": testing_extras},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Wagtail",
"Framework :: Wagtail :: 5",
"Framework :: Wagtail :: 6",
],
),