This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
forked from emory-libraries/eulexistdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·57 lines (52 loc) · 1.59 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from eulexistdb import __version__
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: XML',
]
LONG_DESCRIPTION = None
try:
# read the description if it's there
with open('README.rst') as desc_f:
LONG_DESCRIPTION = desc_f.read()
except:
pass
setup(
name='eulexistdb',
version=__version__,
author='Emory University Libraries',
author_email='[email protected]',
url='https://github.com/emory-libraries/eulexistdb',
license='Apache License, Version 2.0',
packages=find_packages(),
install_requires=[
'requests',
'eulxml>=0.18.0',
],
extras_require={
'django': ['Django'],
'dev': [
'sphinx',
'nose',
'coverage',
'Django',
'unittest2', # optional testrunner in testutil
'tox',
'django-debug-toolbar',
]
},
description='Idiomatic access to the eXist-db XML Database using XPath and XQuery',
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
keywords='eXist-db XQuery',
include_package_data=True,
package_data={'eulexistdb': ['eulexistdb/templates/eulexistdb/*.html']},
)