-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (40 loc) · 1.86 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
#!/usr/bin/env python
# -*- coding: utf-8; fill-column: 80 -*-
#
# Copyright (C) 2016,2017 Jochen Küpper <[email protected]>
# Copyright (C) 2016,2017 Alexander Franke <[email protected]>
import os
from setuptools import setup
extra_compile_args = []
library_dirs = []
long_description = """CMI Confluence Python extensions
CFEL Controlled Molecule Imaging (CMI) tools for Atlassian Confluence.
This packages provides a few scripts to help using Confluence in a systematic
fashion; see description of the individual files below.
This package is provided as is and without any warranty included! If you have
improvements or further tools, please send a patch to the maintainer -- see
setup.py for details.
Original author: Alexander Franke
Current maintainer: no-one (Jochen Küpper)
See the distribution files AUTHORS and README for further contributions.
"""
setup(name="py-confluence",
author = "Alexander Franke, Jochen Küpper",
author_email = "[email protected]",
maintainer = "Alexander Franke",
maintainer_email = "[email protected]",
url = "https://stash.desy.de/projects/CMI/repos/py-confluence",
description = "CMI Confluence Python Tools",
version = "0.2.dev0",
long_description = long_description,
license = "GPL",
packages = ['confluence'],
scripts = ['bin/confluence_clone-space',
'bin/confluence_create-CMI-space',
'bin/confluence_example_create_blog',
'bin/confluence_upload_evernote'],
install_requires = ['requests>=2.21.0',
'six>=1.12.0',
'python-dateutil>=2.7.5',
'eml_parser>=1.11'],
)