-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 912 Bytes
/
setup.py
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='torssh', # This is the name of your PyPI-package.
version='0.1', # Update the version number for new releases
author="banditopazzo",
author_email="[email protected]",
install_requires=[
"stem >= 1.7.1",
],
description="A simple utility to use SSH and SCP over Tor",
url="https://github.com/banditopazzo/torssh",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points = {
'console_scripts': ['torssh=torssh.cli:ssh','torscp=torssh.cli:scp'],
},
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
'License :: OSI Approved :: Apache Software License',
],
)