added setup.py

This commit is contained in:
Rushabh Mehta 2013-12-11 11:32:21 +05:30
parent b234a3545a
commit e460aa277b
3 changed files with 18 additions and 0 deletions

2
.gitignore vendored
View File

@ -5,3 +5,5 @@ conf.py
locale
latest_updates.json
.wnf-lang-status
*.egg-info
dist/

0
erpnext/__init__.py Normal file
View File

16
setup.py Normal file
View File

@ -0,0 +1,16 @@
from setuptools import setup, find_packages
import os
version = '4.0.0-wip'
setup(
name='erpnext',
version=version,
description='Open Source ERP',
author='Web Notes Technologies',
author_email='info@erpnext.com',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=("webnotes",),
)