[go: up one dir, main page]

Menu

[e1a8f3]: / setup.py  Maximize  Restore  History

Download this file

45 lines (37 with data), 1.3 kB

 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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
# Read the version number from a source file.
# Why read it, and not import?
# see https://groups.google.com/d/topic/pypa-dev/0PkjVpcxTzQ/discussion
def find_version():
with open(os.path.join(here, 'VERSION')) as version_file:
return version_file.read().strip()
setup(
name="mediatum",
version=find_version(),
description="mediaTUM",
url='https://mediatum.github.io/mediatum',
author='mediaTUM authors, see git log',
author_email='mediatum@ub.tum.de',
license='GNU General Public License v3 (GPLv3)',
classifiers=[
'Intended Audience :: Customer Service',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
keywords='',
packages=find_packages(),
install_requires=[],
setup_requires=["setuptools-git"],
include_package_data=True,
entry_points={
"console_scripts": [
"mediatum-manage=bin.manage:main",
"mediatum-backend=bin.mediatum:main"
]
}
)