Rushabh Mehta | e460aa2 | 2013-12-11 11:32:21 +0530 | [diff] [blame] | 1 | from setuptools import setup, find_packages |
Rushabh Mehta | e460aa2 | 2013-12-11 11:32:21 +0530 | [diff] [blame] | 2 | |
Nabin Hait | 63d345c | 2015-07-20 15:52:10 +0600 | [diff] [blame] | 3 | version = "5.2.1" |
Anand Doshi | 27b0d16 | 2014-06-30 12:09:41 +0530 | [diff] [blame] | 4 | |
Nabin Hait | c07537b | 2014-03-21 12:25:49 +0530 | [diff] [blame] | 5 | with open("requirements.txt", "r") as f: |
| 6 | install_requires = f.readlines() |
| 7 | |
Rushabh Mehta | e460aa2 | 2013-12-11 11:32:21 +0530 | [diff] [blame] | 8 | setup( |
| 9 | name='erpnext', |
Anand Doshi | 27b0d16 | 2014-06-30 12:09:41 +0530 | [diff] [blame] | 10 | version=version, |
Rushabh Mehta | e460aa2 | 2013-12-11 11:32:21 +0530 | [diff] [blame] | 11 | description='Open Source ERP', |
Anand Doshi | 885e074 | 2015-03-03 14:55:30 +0530 | [diff] [blame] | 12 | author='Frappe Technologies', |
Rushabh Mehta | e460aa2 | 2013-12-11 11:32:21 +0530 | [diff] [blame] | 13 | author_email='info@erpnext.com', |
| 14 | packages=find_packages(), |
| 15 | zip_safe=False, |
| 16 | include_package_data=True, |
Nabin Hait | c07537b | 2014-03-21 12:25:49 +0530 | [diff] [blame] | 17 | install_requires=install_requires |
Pratik Vyas | 0240dc5 | 2014-02-14 16:10:55 +0530 | [diff] [blame] | 18 | ) |