-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (44 loc) · 1.33 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
42
43
44
45
46
47
import setuptools
from setuptools import find_packages
with open("README.md", "r") as f:
long_description = f.read()
from idocker import VERSION
setuptools.setup(
name="idocker",
version=VERSION,
author="ponponon",
author_email="[email protected]",
maintainer='ponponon',
maintainer_email='[email protected]',
license='MIT License',
platforms=["all"],
description="docker cli with python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ponponon/idocker",
packages=find_packages(),
entry_points={
'console_scripts': [
'idocker=idocker.cli.main:cli',
]
},
install_requires=[
'docker',
'click',
'rich',
'tabulate[widechars]'
],
classifiers=[
"Programming Language :: Python",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
)