-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 826 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="hsp",
version="1.0.6",
author="Julian Flesch",
author_email="[email protected]",
keywords="hochschulsport uni Tübingen",
description="hochschulsport course booking",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JulianFlesch/hsp",
project_urls={
"Documentation": "https://github.com/JulianFlesch/hsp",
"Source": "https://github.com/JulianFlesch/hsp"
},
packages=["hsp"],
install_requires=[
"pyyaml",
"selenium",
"Gecko"
],
scripts=[
"bin/hsp"],
classifiers=[
"Topics :: Scraping :: Hochschulsport Tübingen",
],
)