-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
58 lines (55 loc) · 1.68 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
from setuptools import setup, find_packages
NAME = 'mme-server'
VERSION = '0.2.0'
DESCRIPTION = 'A simple server that implements the Matchmaker Exchange API'
AUTHOR = 'Matchmaker Exchange API Team'
AUTHOR_EMAIL = '[email protected]'
LICENSE = 'MIT'
URL = 'https://github.com/MatchmakerExchange/reference-server'
DOWNLOAD_URL = '{}/tarball/{}'.format(URL, VERSION)
INSTALL_REQUIRES = [
'Flask>=0.10.1',
'Flask-Negotiate',
# Use package versions for elasticserach 2.X
'elasticsearch>=2.0.0,<3.0.0',
'elasticsearch-dsl>=2.0.0,<3.0.0',
# Use package versions for elasticserach 1.X
# 'elasticsearch>=1.0.0,<2.0.0',
# 'elasticsearch-dsl>=0.0.0,<1.0.0',
'rdflib',
'jsonschema',
'rfc3987',
]
KEYWORDS = ['Matchmaker Exchange', 'Matchmaker Exchange API', 'patient matchmaking', 'genomics', 'rare disease']
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
setup(
name=NAME,
packages=find_packages(),
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
include_package_data=True,
zip_safe=False,
test_suite='mme_server.tests',
entry_points={
'console_scripts': [
'mme-server=mme_server:main',
]
}
)