-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (35 loc) · 1.24 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
import versiontools_support
setup(
name="taiga-contrib-protected",
version = ":versiontools:taiga_contrib_protected:",
description="The Taiga plugin for protected attachments",
long_description="",
keywords="taiga, download, protected",
author="Miguel González",
author_email="migonzalvar@gmail.com",
url="https://github.com/migonzalvar/taiga-contrib-protected",
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",
],
)