-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (38 loc) · 1.01 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name = "send_ip",
version="0.0.10",
description="python package to send its own IP to another machine through ssh",
package_dir={'' : 'src'},
packages = find_packages("src"),
#py_modules=["send_ip.py"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires= [
"PyYAML >= 5.3.1",
"paramiko >= 2.6.0",
"python-crontab >= 0.23.0",
"py_console",
"scp"
],
extras_require={
"dev" : [
"twine",
"check-manifest",
"PyYAML == 5.3.1",
"paramiko == 2.6.0"]
},
url="https://github.com/matiasandina/send_ip",
author="Matias Andina",
author_email="[email protected]"
)