This repository has been archived by the owner on May 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
74 lines (68 loc) · 2.29 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
70
71
72
73
74
# This file is part of Invenio Demosite.
# Copyright (C) 2013, 2014, 2015 CERN.
#
# Invenio Demosite is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# Invenio Demosite 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
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Invenio; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
"""Example demosite repository."""
import os
from setuptools import setup, find_packages
# Load __version__, should not be done using import.
# http://python-packaging-user-guide.readthedocs.io/en/latest/development.html#single-sourcing-the-version
g = {}
with open(os.path.join('invenio_demosite', 'version.py'), 'rt') as fp:
exec(fp.read(), g)
version = g['__version__']
setup(
name='invenio-demosite',
version=version,
url='https://github.com/inveniosoftware/invenio-demosite',
license='GPLv2',
author='CERN',
author_email='info@inveniosoftware.org',
description=__doc__,
long_description=open('README.rst', 'rt').read(),
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'invenio>2.1',
'invenio-knowledge>=0.1.0',
],
extras_require={
'development': [
'Flask-DebugToolbar>=0.9',
'setuptools-bower>=0.2'
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPLv2 License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
entry_points={
'invenio.config': [
'demosite = invenio_demosite.config'
]
},
test_suite='nose.collector',
tests_require=[
'nose',
'Flask-Testing'
]
)