-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
50 lines (46 loc) · 1.23 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
from setuptools import setup
import brightsky
with open('README.md') as f:
long_description = f.read()
setup(
name='brightsky',
version=brightsky.__version__,
author='Jakob de Maeyer',
author_email='[email protected]',
description="JSON API for DWD's open weather data.",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://brightsky.dev/',
project_urls={
'Documentation': 'https://brightsky.dev/docs/',
'Source': 'https://github.com/jdemaeyer/brightsky/',
'Tracker': 'https://github.com/jdemaeyer/brightsky/issues/',
},
packages=['brightsky'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
install_requires=[
'astral',
'click',
'coloredlogs',
'dwdparse[lean]',
'falcon>=3',
'gunicorn',
'huey',
'isal',
'numpy',
'orjson',
'parsel',
'psycopg2-binary',
'pyproj',
'python-dateutil',
'redis',
'requests',
'sentry-sdk',
'shapely',
],
)