-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
68 lines (48 loc) · 1.64 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from setuptools import setup, find_packages
import glob
import pathlib
BASE = pathlib.Path(__file__).parent.resolve()
NAME = "pylawr"
AUTHOR = "pylawr developers"
AUTHOR_EMAIL = "finn.burgemeister@uni-hamburg.de"
DESCRIPTION = "pylawr is a Python package to load, process and plot weather " \
"radar data"
LONG_DESCRIPTION = (BASE / 'README.md').read_text(encoding='utf-8')
KEYWORDS = 'Meteorology, Weather Radar'
URL = "https://wetterradar.uni-hamburg.de"
DOWNLOAD_URL = "https://github.com/ObsMod/pylawr"
LICENSE = "MIT"
CLASSIFIERS = [
'Development Status :: 4 - BETA',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"Programming Language :: Python :: 3.10",
'Programming Language :: Python :: 3 :: Only',
]
MAJOR = 0
MINOR = 4
PATCH = 0
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url=DOWNLOAD_URL, # Optional
author=AUTHOR, # Optional
author_email=AUTHOR_EMAIL, # Optional
classifiers=CLASSIFIERS,
keywords=KEYWORDS,
#package_dir={'': 'pylawr'}, # Optional
packages=find_packages(exclude=['docs', 'tests.*']),
python_requires='>=3.7, <4',
scripts=glob.glob("bin/pylawr*"),
)