forked from codeforkjeff/refine_viaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1.09 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
import os
from setuptools import setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='refine_viaf',
version='0.3',
packages=['refine_viaf'],
install_requires=['beautifulsoup4', 'requests'],
include_package_data=True,
license='BSD License',
description='VIAF Reconciliation Service for OpenRefine',
long_description='refine_viaf implements an OpenRefine Reconciliation Service that queries the VIAF public API. Works with Django and other web frameworks. See the project page on GitHub for more details.',
url='https://github.com/codeforkjeff/refine_viaf',
author='Jeff Chiu',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
)