-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
69 lines (61 loc) · 1.81 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
58
59
60
61
62
63
64
65
66
67
68
69
import os
import sys
from setuptools import find_packages, setup
PROJECT_DIR = os.path.dirname(__file__)
sys.path.append(os.path.join(PROJECT_DIR, 'src'))
from wagtail_marketing import get_version # noqa isort:skip
docs_require = [
'mkdocs',
'pymdown-extensions'
]
tests_require = [
# Required for test and coverage
'pytest',
'pytest-cov',
'pytest-django',
'pytest-pythonpath',
'coverage',
'factory-boy',
'psycopg==3.1.18',
'tox',
# Linting
'flake8',
'isort',
]
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='wagtail-marketing-addons',
version=get_version().replace(' ', '-'),
description='A Wagtail add-on for supporting marketeer\'s in daily activities',
long_description=long_description,
long_description_content_type='text/markdown',
author='Lukkien BV',
author_email='[email protected]',
url='https://www.lukkien.com/',
extras_require={
'test': tests_require,
'doc': docs_require,
},
tests_require=tests_require,
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: Django',
'Framework :: Wagtail',
'Framework :: Wagtail :: 5',
'Topic :: Internet :: WWW/HTTP :: Site Management',
]
)