pipdeptree/setup.py

30 lines
686 B
Python
Raw Normal View History

2014-06-12 19:57:36 +00:00
import sys
2014-02-05 16:15:36 +00:00
from setuptools import setup
with open('./README.rst') as f:
long_desc = f.read()
2014-06-12 19:57:36 +00:00
install_requires = ["pip >= 1.4.1"]
if sys.version_info < (2, 7):
install_requires.append('argparse')
2014-02-05 16:15:36 +00:00
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,
2014-06-12 19:57:36 +00:00
install_requires=install_requires,
2014-02-05 16:15:36 +00:00
py_modules=['pipdeptree'],
entry_points={
'console_scripts': [
'pipdeptree = pipdeptree:main'
]
}
)