* chore: Added isort to pre-commit config * chore: Sort imports with isort * chore: Remove imports with pycln * chore: Sort imports with isort * chore: Fix import issues * chore: Fix sider issues * chore: linting * chore: linting / sorting import from ecommerce refactor merge * ci: dont allow unused imports * chore: sort / clean ecommerce imports Co-authored-by: Ankush Menat <ankush@iwebnotes.com>
30 lines
719 B
Python
30 lines
719 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
import ast
|
|
import re
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
# get version from __version__ variable in erpnext/__init__.py
|
|
_version_re = re.compile(r'__version__\s+=\s+(.*)')
|
|
|
|
with open('requirements.txt') as f:
|
|
install_requires = f.read().strip().split('\n')
|
|
|
|
with open('erpnext/__init__.py', 'rb') as f:
|
|
version = str(ast.literal_eval(_version_re.search(
|
|
f.read().decode('utf-8')).group(1)))
|
|
|
|
setup(
|
|
name='erpnext',
|
|
version=version,
|
|
description='Open Source ERP',
|
|
author='Frappe Technologies',
|
|
author_email='info@erpnext.com',
|
|
packages=find_packages(),
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
install_requires=install_requires
|
|
)
|