-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.41 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
#!/usr/bin/env python
# encoding=utf-8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='roald',
version='0.1.dev1',
description='Roald III indexing tool',
author='Dan Michael Heggø',
author_email='[email protected]',
url='https://github.com/scriptotek/roald',
license='MIT',
packages=['roald', 'roald.models', 'roald.adapters'],
install_requires=['xmlwitch==0.3.0', # Note: we need to use the danmichaelo fork, since I haven't been able to get it merged (or get any response from the original author at all).
'isodate',
'lxml',
'rdflib',
'iso-639',
'requests',
'otsrdflib>=0.5.0',
'six',
'skosify @ git+https://github.com/NatLibFi/Skosify.git@master#egg=skosify-2.0.2',
'xmlwitch @ git+https://github.com/danmichaelo/[email protected]#egg=xmlwitch-0.3.0',
],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
]
)