forked from openannotation/annotator-store
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (35 loc) · 1.23 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
from setuptools import setup, find_packages
setup(
name = 'annotator',
version = '0.6.0',
packages = find_packages(),
install_requires = [
'Flask==0.8',
'Flask-WTF==0.5.2',
'Flask-SQLAlchemy==0.15',
'SQLAlchemy==0.7.4',
'pyes==0.16.0',
'nose==1.0.0',
'mock==0.7.2',
'iso8601==0.1.4'
],
# metadata for upload to PyPI
author = 'Rufus Pollock and Nick Stenning (Open Knowledge Foundation)',
author_email = '[email protected]',
description = 'Inline web annotation application and middleware using javascript and WSGI',
long_description = """Inline javascript-based web annotation library. \
Package includeds a database-backed annotation store \
with RESTFul (WSGI-powered) web-interface.""",
license = 'MIT',
keywords = 'annotation web javascript',
url = 'http://okfnlabs.org/annotator/',
download_url = 'https://github.com/okfn/annotator-store',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'
],
)