mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
290 B
Python
15 lines
290 B
Python
6 years ago
|
#!/usr/bin/env python
|
||
|
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name="ansible_test_pip_chdir",
|
||
|
version="0",
|
||
|
packages=find_packages(),
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'ansible_test_pip_chdir = ansible_test_pip_chdir:main'
|
||
|
]
|
||
|
}
|
||
|
)
|