-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1 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
from setuptools import setup, find_packages
__version__ = "0.0.1"
setup(
# package name in pypi
name='wagtailspace2022',
# extract version from module.
version=__version__,
description="Roadrunner demo site for wagtailspace2022",
long_description="Roadrunner demo site",
classifiers=[],
keywords='',
author='',
author_email='',
url='',
license='',
# include all packages in the egg, except the test package.
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
# for avoiding conflict have one namespace for all apc related eggs.
# include non python files
include_package_data=True,
zip_safe=False,
# specify dependencies
install_requires=[
'setuptools',
'wagtail<3.0',
'django<4',
'wagtail-roadrunner@git+https://github.com/highbiza/wagtail-roadrunner.git#egg=wagtail-roadrunner'
],
dependency_links=['git+https://github.com/highbiza/wagtail-roadrunner.git#egg=wagtail-roadrunner']
)