forked from hydrocode-de/RUINSapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (21 loc) · 658 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (21 loc) · 658 Bytes
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
import importlib
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
def requirements():
with open('requirements.txt') as f:
return f.read().splitlines()
def version():
ruins = importlib.import_module('ruins')
return ruins.__version__
setup(
name='ruins-app',
description='Climate change and uncertainty explorer',
long_description=readme(),
version=version(),
author='Conrad Jackisch, Mirko Mälicke',
author_email='Conrad.Jackisch@tbt.tu-freiberg.de, mirko@hydrocode.de',
install_requires=requirements(),
packages=find_packages()
)