-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathsetup.py
33 lines (31 loc) · 1.14 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
from setuptools import setup, find_packages
from pathlib import Path
long_description = (Path(__file__).parent / "README.md").read_text()
setup(
name='berlin-appointment-finder',
version='1.1.2',
description='Finds appointments at the Berlin Bürgeramt, broadcasts them via websockets',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://allaboutberlin.com/tools/appointment-finder',
project_urls={
'Documentation': 'https://github.com/All-About-Berlin/burgeramt-appointments',
'Funding': 'https://allaboutberlin.com/donate',
'Source Code': 'https://github.com/All-About-Berlin/burgeramt-appointments',
'Issues': 'https://github.com/All-About-Berlin/burgeramt-appointments/issues'
},
author='Nicolas Bouliane',
author_email='contact@nicolasbouliane.com',
license='MIT',
packages=find_packages(),
scripts=['bin/appointments'],
python_requires='>=3.10',
install_requires=[
'aiohttp==3.11.11',
'beautifulsoup4==4.12.3',
'chime==0.7.0',
'pytz',
'websockets==14.2',
],
zip_safe=False,
)