-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.09 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
from setuptools import find_packages, setup
__version__ = "0.1.0"
setup(
name="shamiko",
version=__version__,
description="Shamiko ga waruindayo",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Yuki Igarashi",
author_email="[email protected]",
url="https://github.com/bonprosoft/shamiko",
license="MIT License",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
],
package_data={"shamiko": ["py.typed", "templates/*.template"]},
install_requires=["psutil>=5.6.7,<6", "Jinja2>=2.10.3,<3"],
entry_points={"console_scripts": ["shamiko = shamiko.cli:cli"]},
zip_safe=False,
)