-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (29 loc) · 959 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
from setuptools import setup, find_packages
setup(
name='podman-init',
version='1.0.3',
packages=find_packages(exclude=['tests']),
package_data={'': ['templates/**/*.j2']},
include_package_data=True,
install_requires=[
'click',
'jinja2'
],
entry_points={
'console_scripts': [
'podman-init = src:podman_init'
]
},
author='Suriya',
description='Python command-line tool that automates the process of initializing Docker-related files for your projects.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/suriya-mca/Podman_Init_Cli',
license='MIT',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
exclude_package_data={'': ['tests/*']}
)