-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (63 loc) · 1.79 KB
/
pyproject.toml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
###############################################################################
#
# pyproject.toml - File with build configuration.
#
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2022 fra87
#
[build-system]
requires = ['setuptools', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'routerscraper'
version = '0.3.1'
authors = [{name = 'fra87'}]
description = 'A python package to interact with different routers'
readme = 'README.md'
license = {file = 'LICENSES/MIT.txt'}
requires-python = '>=3.7'
keywords = [
'router',
'scraping',
'scrape',
'harvest'
]
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking :: Monitoring'
]
dependencies = [
'srp',
'beautifulsoup4',
'requests',
'selenium'
]
[project.optional-dependencies]
dev = [
'flake8', 'reuse', 'bumpver',
'build', 'twine',
'pip', 'setuptools', 'wheel'
]
[project.urls]
Homepage = 'https://github.com/fra87/RouterScraper'
[tool.setuptools.packages.find]
where = ['src']
[tool.bumpver]
current_version = '0.3.1'
version_pattern = 'MAJOR.MINOR.PATCH'
commit_message = 'Bump version {old_version} -> {new_version}'
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
'pyproject.toml' = ["current_version = '{version}'", "version = '{version}'"]
'src/routerscraper/__init__.py' = ['{version}']