blob: 5106308403dceac906424f4387fb285c53a0b994 [file] [log] [blame]
Rushabh Mehtae460aa22013-12-11 11:32:21 +05301from setuptools import setup, find_packages
2import os
3
Pratik Vyas0240dc52014-02-14 16:10:55 +05304version = '4.0.0-beta'
Rushabh Mehtae460aa22013-12-11 11:32:21 +05305
6setup(
7 name='erpnext',
8 version=version,
9 description='Open Source ERP',
10 author='Web Notes Technologies',
11 author_email='info@erpnext.com',
12 packages=find_packages(),
13 zip_safe=False,
14 include_package_data=True,
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053015 install_requires=("frappe",),
Pratik Vyas0240dc52014-02-14 16:10:55 +053016)