forked from justinvw/pyexist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.42 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
import sys, os
from setuptools import setup, find_packages
# Import the file that contains the version number.
src_dir = os.path.join(os.path.dirname(__file__), 'src', 'pyexist')
sys.path.insert(0, src_dir)
from version import __version__
# Import the project description from the README.
readme = open('README').read()
start = readme.index('\n\n')
end = readme.index('\n\n=')
descr = readme[start:end].strip()
# Run the setup.
setup(name = 'pyexist',
version = __version__,
description = 'Library for communicating with eXist XML databases',
long_description = descr,
author = 'Samuel Abels',
author_email = '[email protected]',
license = 'GPLv2',
package_dir = {'': 'src'},
packages = [p for p in find_packages('src')],
scripts = ['pyexist'],
install_requires = ['lxml'],
keywords = 'database xml rest exist-db exist',
url = 'http://github.com/knipknap/pyexist',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: XML'
])