-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 745 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: utf-8 -*-
import ast
import re
from setuptools import find_packages, setup
# get version from __version__ variable in awesome_cart/__init__.py
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('awesome_cart/__init__.py', 'rb') as f:
version = str(ast.literal_eval(
_version_re.search(f.read().decode('utf-8')).group(1)))
with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
setup(
name='awesome_cart',
version=version,
description='A one page checkout experience cart replacement for ERPNext',
author='DigitThinkIt, Inc.',
author_email='forellana@digithinkit.com',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=install_requires
)