forked from paul-hoehne/MarkLogic_Python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (23 loc) · 898 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
__author__ = 'phoehne'
from setuptools import setup, find_packages
setup(
name="marklogic",
version="0.0.1pr1",
packages=["marklogic", "marklogic.models", "marklogic.recipes", "marklogic.tools", "marklogic.models.utilities"],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=[
'requests>=2.5.0'
],
include_package_data=True,
zip_safe=False,
platforms='any',
# metadata for upload to PyPI
author = "Paul Hoehne",
author_email = "[email protected]",
description = "MarkLogic package for maintaining servers",
license = "Apache",
keywords = "MarkLogic rest management",
url = "http://github.com/paul-hoehne/MarkLogic_Python/", # project home page, if any
# could also include long_description, download_url, classifiers, etc.
)