-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (32 loc) · 928 Bytes
/
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
from setuptools import setup
import dwdparse
with open('README.md') as f:
long_description = f.read()
setup(
name='dwdparse',
version=dwdparse.__version__,
author='Jakob de Maeyer',
author_email='[email protected]',
description="Parsers for DWD's open weather data.",
long_description=long_description,
long_description_content_type='text/markdown',
project_urls={
'Source': 'https://github.com/jdemaeyer/dwdparse/',
'Tracker': 'https://github.com/jdemaeyer/dwdparse/issues/',
},
packages=['dwdparse'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
extras_require={
'lean': [
'ijson',
],
},
entry_points={
'console_scripts': ['dwdparse = dwdparse.cli:main'],
},
)