2014-02-05 16:15:36 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
|
|
with open('./README.rst') as f:
|
|
|
|
long_desc = f.read()
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='pipdeptree',
|
2014-05-11 10:57:27 +00:00
|
|
|
version='0.3',
|
2014-02-05 16:15:36 +00:00
|
|
|
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=["pip >= 1.4.1"],
|
|
|
|
py_modules=['pipdeptree'],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'pipdeptree = pipdeptree:main'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|