-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 857 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 857 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
from setuptools import find_packages, setup
from pathlib import Path
# read the contents of your README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="MVVLive",
packages=find_packages(include=["MVVLive"]),
version="1.0.3",
description="Live public transportation data for Munich public transport",
long_description=long_description,
long_description_content_type='text/markdown',
author="Dario Schmid",
author_email="darioschmid99@outlook.com",
license="?",
install_requires=['soupsieve==2.5', 'beautifulsoup4==4.12.2', 'requests',
'pathlib'],
setup_requires=['pytest-runner'],
tests_require=['pytest==4.4.1', 'python-dotenv==1.0.0'],
test_suite='tests',
url='https://github.com/darioschmid/PyMVVLive',
)