-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 804 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 804 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
from os import path
home = path.abspath(path.dirname(__file__))
with open(path.join(home, 'README.md'), encoding='utf-8') as readme:
long_description = readme.read()
setuptools.setup(name='demcert',
version = '1.0',
description = 'A general purpose tool for modelling uncertainty on gridded spatial data using Gaussian random fields',
long_description = long_description,
long_description_content_type = 'text/markdown',
author='Lukas Graf',
author_email ='graflukas@web.de',
url = '',
include_package_data=True,
packages=setuptools.find_packages(),
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)