This repository has been archived by the owner on May 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
66 lines (62 loc) · 2.42 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
# -*- coding: utf-8 -*-
#
# MARV
# Copyright (C) 2016-2017 Ternaris, Munich, Germany
#
# This file is part of MARV
#
# MARV is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# MARV is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with MARV. If not, see <http://www.gnu.org/licenses/>.
from __future__ import absolute_import, division, print_function
import os
from setuptools import setup
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, 'README.rst')) as f:
README = f.read()
setup(name='marv-cli',
version='3.0.0',
description='Core of the MARV command-line interface',
long_description=README,
classifiers=[
'Development Status :: 5 - Production/Stable',
"Framework :: Flask",
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: POSIX :: Linux', # for now
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only', # for now
'Programming Language :: Python :: Implementation :: CPython', # for now
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
'Topic :: Scientific/Engineering',
],
author='Ternaris',
author_email='team@ternaris.com',
url='https://github.com/ternaris/marv-cli',
license='AGPLv3+',
packages=['marv_cli'],
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
install_requires=['click'],
extras_require={
'testing': ['coverage',
'ipdb',
'ipdbplugin',
'ipython',
'mock',
'nose',
'testfixtures'],
},
entry_points={'console_scripts': ['marv = marv_cli:cli',
'marv-ipdb = marv_cli:cli_ipdb']})