2017-07-04 15:10:05 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
with open("README.md") as readme:
|
|
|
|
long_description = readme.read()
|
|
|
|
|
|
|
|
with open("requirements.txt") as f:
|
|
|
|
install_requires = f.read().split()
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='pyseeder',
|
2025-02-21 16:59:58 +00:00
|
|
|
version='0.2',
|
2017-07-04 15:10:05 -04:00
|
|
|
description='Python reseed utilities for I2P',
|
|
|
|
long_description=long_description,
|
|
|
|
author='Darnet Villain',
|
|
|
|
author_email='supervillain@riseup.net',
|
2022-02-22 19:32:08 +00:00
|
|
|
maintainer='R4SAS',
|
|
|
|
maintainer_email='r4sas@i2pmail.org',
|
2017-07-04 15:10:05 -04:00
|
|
|
url='https://github.com/PurpleI2P/pyseeder/',
|
|
|
|
keywords='i2p reseed',
|
|
|
|
license='MIT',
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
2025-02-21 16:59:58 +00:00
|
|
|
'License :: OSI Approved :: MIT License',
|
2017-07-04 15:10:05 -04:00
|
|
|
'Programming Language :: Python :: 3',
|
2022-02-22 19:32:08 +00:00
|
|
|
'Topic :: Utilities',
|
2017-07-04 15:10:05 -04:00
|
|
|
],
|
|
|
|
packages=['pyseeder', 'pyseeder.transports'],
|
|
|
|
install_requires=install_requires,
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'pyseeder=pyseeder.cli:main',
|
|
|
|
],
|
2025-02-21 16:59:58 +00:00
|
|
|
},
|
|
|
|
project_urls={
|
|
|
|
'Bug Reports': 'https://github.com/PurpleI2P/pyseeder/issues',
|
|
|
|
'Source': 'https://github.com/PurpleI2P/pyseeder/',
|
|
|
|
},
|
2017-07-04 15:10:05 -04:00
|
|
|
)
|