-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (34 loc) · 1.18 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
#!/usr/bin/env python
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2021-present Kaleidos INC
from setuptools import setup, find_packages
setup(
name = 'taiga-prerender-recache',
version = "0.0.1",
description = "The prerender recache command",
long_description = "",
keywords = 'taiga, prerender',
author = 'Jesús Espino García',
author_email = '[email protected]',
url = 'https://github.com/taigaio/taiga-prerender-recache',
license = 'MPL-2',
include_package_data = True,
packages = find_packages(),
install_requires=[],
setup_requires = [
'versiontools >= 1.9',
],
classifiers = [
"Programming Language :: Python",
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)