Add setup.py

This commit is contained in:
Vineet 2014-02-05 21:45:36 +05:30
parent ded34c25e2
commit ea5a5b18f1
1 changed files with 24 additions and 0 deletions

24
setup.py Normal file
View File

@ -0,0 +1,24 @@
from setuptools import setup
with open('./README.rst') as f:
long_desc = f.read()
setup(
name='pipdeptree',
version='0.1',
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'
]
}
)