-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (26 loc) · 803 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (26 loc) · 803 Bytes
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
import sys,setuptools,os
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="xtelnet",
version="2.2.7",
author="AlaBouali",
author_email="ala.bouali.1997@gmail.com",
description="the best alternative to telnetlib as a telnet client",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AlaBouali/xtelnet",
packages=["xtelnet"],
python_requires=">=2.7",
install_requires=['PySocks'],
license="MIT License",
entry_points={
'console_scripts': [
'xtelnet = xtelnet.__main__:run',
],
},
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License ",
],
)