This repository has been archived by the owner on Nov 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (37 loc) · 1.68 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
# -*- coding: UTF-8 -*-
#
# Isotammi Genealogical Service for combining multiple researchers' results.
# Created in co-operation with the Genealogical Society of Finland.
#
# Copyright (C) 2016-2021 Juha Mäkeläinen, Jorma Haapasalo, Kari Kujansuu,
# Timo Nallikari, Pekka Valta
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from setuptools import setup, find_packages
#See: https://setuptools.readthedocs.io/en/latest/setuptools.html
setup (
name='stk_server',
version='2022.1',
packages=find_packages(),
# Declare your packages' dependencies here, for eg:
install_requires=['flask', 'werkzeug', 'neo4j-driver', 'flask-security'],
# Fill in these to make your Egg ready for upload to PyPI
author='jm',
author_email='[email protected]',
description = 'Server program for Suomitietokanta',
url='https://github.com/Taapeli/stk-upload',
license='',
long_description='Isotammi-palvelinsovellus',
# could also include long_description, download_url, classifiers, etc.
)