Newer
Older
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
"""Setup file for easy installation of the application."""
# from distutils.core import setup
from setuptools import find_packages, setup
setup(
# Application author details:
author="Konstantin Schulz",
author_email="konstantin.schulz@hu-berlin.de",
# PyPi metadata
classifiers=["Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"],
# Summary of software purpose
description="Backend with REST API for the CALLIDUS_HU project software",
# Include additional files into the package
include_package_data=True,
# Dependent packages (distributions)
# install_requires=[
# "Flask>=1.0.2", 'rapidjson>=1.0.0'
# ],
# License
license_file="LICENSE",
# more detailed information about the software
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
# Application name:
name="mcserver",
# Packages
packages=find_packages(), # ["app"],
# Source Code
url="https://scm.cms.hu-berlin.de/callidus/mc-backend",
# Version number (initial):
version="1.8.3",
zip_safe=False, install_requires=['flask', 'graphannis']
)