30 lines
686 B
Python
30 lines
686 B
Python
import sys
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
with open('./README.rst') as f:
|
|
long_desc = f.read()
|
|
|
|
install_requires = ["pip >= 1.4.1"]
|
|
if sys.version_info < (2, 7):
|
|
install_requires.append('argparse')
|
|
|
|
setup(
|
|
name='pipdeptree',
|
|
version='0.3',
|
|
author='Vineet Naik',
|
|
author_email='naikvin@gmail.com',
|
|
url='https://github.com/naiquevin/pipdeptree',
|
|
license='MIT License',
|
|
description='Command line utility to show dependency tree of packages',
|
|
long_description=long_desc,
|
|
install_requires=install_requires,
|
|
py_modules=['pipdeptree'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'pipdeptree = pipdeptree:main'
|
|
]
|
|
}
|
|
)
|