forked from jermnelson/bibframe-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1001 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
32
33
from setuptools import find_packages, setup
import os
here = os.path.abspath(os.path.dirname(__file__))
version_file = open(os.path.join(here, "VERSION"))
setup(
name = 'bibframe_catalog',
version=version_file.read().strip(),
description='BIBFRAME Search and Access Catalog',
url='https://github.com/jermnelson/bibframe-catalog',
author='Jeremy Nelson',
author_email='[email protected]',
license='GPLv3',
classifiers=[
'License :: OSI Approved :: GPLv3',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='bibframe catalog fedora elastic search',
packages = find_packages(),
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
'Flask-Negotiate',
'pymarc',
'Flask-FedoraCommons',
'elasticsearch',
'rdflib']
)