Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

some updates, no functional changes #7

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 by Thomas Waldmann <[email protected]>
Copyright (c) 2019-2024 by Thomas Waldmann <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ so you do not need to manually log in / fill out a form / log out.

## Installation

You need to have Python >= 3.5 installed.
You need to have Python >= 3.9 installed.
See https://www.python.org/ if you don't have it already.

On a shell (linux terminal, windows cmd.exe), enter this to install the vmnlcli software:
Expand Down
47 changes: 47 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[project]
name = "vmnlcli"
dynamic = ["readme"]
version = "0.3.0"
authors = [{name="Thomas Waldmann", email="[email protected]"}]
description = "command line interface for some dutch velomobile websites"
requires-python = ">=3.9"
keywords = ["velomobile", "odometer", "cli", "velomobiel.nl", "intercitybike.nl", "welmers.net"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Topic :: Database :: Front-Ends",
"Topic :: Internet :: WWW/HTTP :: Site Management",
]
license = {text="MIT"}
dependencies = [
"requests",
]

[project.urls]
"Homepage" = "http://github.com/thomaswaldmann/velomobielnl/"
"Bug Tracker" = "http://github.com/thomaswaldmann/velomobielnl/issues"
"Documentation" = "http://github.com/thomaswaldmann/velomobielnl/"
"Repository" = "http://github.com/thomaswaldmann/velomobielnl/"

[project.scripts]
vmnlcli = "vmnlcli:main"

[tool.setuptools]
# We want to install all the files in the package directories...
include-package-data = true

[tool.setuptools.packages.find]
where = ["src"]

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
43 changes: 1 addition & 42 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""
setup for vmnlcli package
"""

from setuptools import setup, find_packages
from setuptools import setup


with open('README.md') as f:
Expand All @@ -14,43 +10,6 @@


setup(
name='vmnlcli',
version='0.2.0',
url='http://github.com/thomaswaldmann/velomobielnl/',
license='MIT',
author='Thomas Waldmann',
author_email='[email protected]',
description='command line interface for some dutch velomobile websites',
long_description=long_description,
long_description_content_type='text/markdown',
keywords="velomobile odometer cli velomobiel.nl intercitybike.nl welmers.net",
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
entry_points={
'console_scripts': [
'vmnlcli = vmnlcli:main',
]
},
platforms='any',
setup_requires=[],
install_requires=[
'requests',
],
python_requires='>=3.5',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Utilities',
'Topic :: Database :: Front-Ends',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
)
2 changes: 1 addition & 1 deletion src/vmnlcli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- www.velomobiel.nl
- www.intercitybike.nl

(c) 2019-2020 by Thomas Waldmann <[email protected]>.
(c) 2019-2024 by Thomas Waldmann <[email protected]>.
Licensed under the MIT license.
"""

Expand Down