-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 897 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
27
28
29
30
31
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='py-plesk-domains',
version='1.1.1',
author="Panagiotis Pantazopoulos",
author_email="takispadaz@gmail.com",
description="Get some basic data about domains from a server with plesk panel",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/takisrs/py-plesk-domains",
scripts=['py_plesk_domains.py'],
entry_points={
'console_scripts': [
'py-plesk-domains=py_plesk_domains:main',
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'tabulate',
'pyOpenSSL',
'requests'
]
)