mirror of
https://github.com/PurpleI2P/pyseeder
synced 2025-01-17 10:19:56 +00:00
37 lines
992 B
Python
37 lines
992 B
Python
#!/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',
|
|
version='0.1',
|
|
description='Python reseed utilities for I2P',
|
|
long_description=long_description,
|
|
author='Darnet Villain',
|
|
author_email='supervillain@riseup.net',
|
|
maintainer='R4SAS',
|
|
maintainer_email='r4sas@i2pmail.org',
|
|
url='https://github.com/PurpleI2P/pyseeder/',
|
|
keywords='i2p reseed',
|
|
license='MIT',
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
'Programming Language :: Python :: 3',
|
|
'Topic :: Utilities',
|
|
],
|
|
packages=['pyseeder', 'pyseeder.transports'],
|
|
install_requires=install_requires,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'pyseeder=pyseeder.cli:main',
|
|
],
|
|
}
|
|
)
|