mirror of
https://github.com/damp11113/PyserSSH.git
synced 2025-04-27 22:48:11 +00:00
24 lines
649 B
Python
24 lines
649 B
Python
from setuptools import setup, find_packages
|
|
|
|
with open('README.md', 'r', encoding='utf-8') as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name='PyserSSH',
|
|
version='4.2.1', # update pypi (no update for 4.3)
|
|
license='MIT',
|
|
author='damp11113',
|
|
author_email='damp51252@gmail.com',
|
|
packages=find_packages('src'),
|
|
package_dir={'': 'src'},
|
|
url='https://github.com/damp11113/PyserSSH',
|
|
description="A easy ssh server",
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
install_requires=[
|
|
"paramiko"
|
|
],
|
|
extras_require={
|
|
"fullsyscom": ["damp11113"]
|
|
}
|
|
) |