-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (29 loc) · 869 Bytes
/
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
from setuptools import setup, find_packages
version = "2.0.0"
setup(
name='flask_nemo',
version=version,
packages=find_packages(exclude=["examples", "tests"]),
url='https://github.com/capitains/flask-capitains-nemo',
license='Mozilla Public License Version 2.0',
author='Thibault Clerice',
author_email='[email protected]',
description='Flask Extension to browse a CapiTainS-compliant Repository',
test_suite="tests",
install_requires=[
"MyCapytain>=3.0.0",
"requests_cache>=0.4.9",
"Flask>=0.12",
"requests>=2.10.0",
"python-slugify==1.2.1",
"Flask-Caching>=1.2.0"
],
tests_require=[
"mock>=2.0.0",
],
entry_points={
'console_scripts': ['capitains-nemo=flask_nemo.cmd:server'],
},
include_package_data=True,
zip_safe=False
)