1
0
mirror of https://github.com/PurpleI2P/pyseeder synced 2025-03-13 05:41:23 +00:00

bump to 0.2

Signed-off-by: r4sas <r4sas@i2pmail.org>
This commit is contained in:
R4SAS 2025-02-21 16:59:58 +00:00
parent 6d131eb366
commit 4dbdf65f46
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2
3 changed files with 14 additions and 3 deletions

5
pyproject.toml Normal file
View File

@ -0,0 +1,5 @@
[build-system]
requires = ["setuptools", "wheel"]
[tools.setuptools]
license_files = []

2
setup.cfg Normal file
View File

@ -0,0 +1,2 @@
[metadata]
license_files = LICENSE

View File

@ -10,7 +10,7 @@ with open("requirements.txt") as f:
setup(
name='pyseeder',
version='0.1',
version='0.2',
description='Python reseed utilities for I2P',
long_description=long_description,
author='Darnet Villain',
@ -22,7 +22,7 @@ setup(
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
@ -32,5 +32,9 @@ setup(
'console_scripts': [
'pyseeder=pyseeder.cli:main',
],
}
},
project_urls={
'Bug Reports': 'https://github.com/PurpleI2P/pyseeder/issues',
'Source': 'https://github.com/PurpleI2P/pyseeder/',
},
)