-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 778 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 778 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
26
27
28
from setuptools import setup, find_packages
setup(
name='niescraper',
version='1.0.0',
description='Controls your browser in order to search for and book appointments at the Spanish Extranjería.',
author='Elias Keis',
author_email='git-commits@elkei.de',
packages=find_packages(exclude=['tests', 'tests.*', 'docs', 'lazy']),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': ['niescraper=niescraper.app:run'],
},
install_requires=[
'playsound',
'selenium',
'pytz',
'aioconsole',
'PyObjC'
],
tests_require=[
'pytest'
]
)