-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
57 lines (53 loc) · 1.75 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import find_packages, setup
with open('README.md', 'r') as fh:
long_description = fh.read()
install_requires = [
'django-bakery~=0.13.1',
'wagtail>=4.1',
]
test_requires = [
'factory-boy',
'flake8',
'isort',
'pytest',
'pytest-cov',
'pytest-django',
]
setup(
name='wagtail-bakery',
version='0.8.0',
description='A set of helpers for baking your Django Wagtail site out as flat files.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Rob Moorman and Wagtail Core Team',
author_email='[email protected]',
url="https://github.com/wagtail-nest/wagtail-bakery/",
project_urls={
"Source": "https://github.com/wagtail-nest/wagtail-bakery/",
"Issue tracker": "https://github.com/wagtail-nest/wagtail-bakery/issues/",
"Changelog": "https://github.com/wagtail-nest/wagtail-bakery/blob/main/CHANGELOG.md",
},
install_requires=install_requires,
tests_require=test_requires,
extras_require={'test': test_requires},
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=False,
license='MIT',
classifiers=[
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Framework :: Django',
'Framework :: Wagtail',
'Framework :: Wagtail :: 5',
'Framework :: Wagtail :: 6',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)