Add setup.py
This commit is contained in:
parent
ded34c25e2
commit
ea5a5b18f1
|
@ -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'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
)
|
Loading…
Reference in New Issue