Re: [BangPypers] Problem in setup.py file

2015-03-12 Thread Nitin Kumar
Hi Priyal, The content posted of your setup was needed to understand the issue. So ignore mailing etiquette replies :) If you install using "pip install ***" it will take care of what you want to achieve using your setup.py content. python setup.py install will generally create .egg (if it can)

Re: [BangPypers] Problem in setup.py file

2015-03-08 Thread Kiran Gangadharan
Hi Priyal, Kindly use a service such as this[0] or this[1] when pasting a code snippet containing more than a few lines of code. It makes your reply short and the code snippet easier to review. Thanks! --- [0] http://dpaste.com/ [1] http://pastebin.com/ On Wed, Mar 4, 2015 at 10:33 AM,

Re: [BangPypers] Problem in setup.py file

2015-03-03 Thread Priyal Jain
Hi, My setup.py file is: from setuptools import setup, find_packages setup(name = "abc", version = "0.1", description = "Python version of abc Administrator", author = "Priyal Jain", author_email = "jainpriyal...@gmail.com", license="Apache 2.0"

Re: [BangPypers] Problem in setup.py file

2015-03-03 Thread kracekumar ramaraju
Hi Probably Sharing setup.py may help. Django project does similar thing https://github.com/django/django/blob/master/setup.py and works. (directory)➜ ~ pip install django (directory)➜ ~ ls /Users/kracekumar/Envs/directory/lib/python2.7/site-packages/django __init__.py __init__.pyc apps