forked from Monogramm/frappe_pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 804 Bytes
/
setup.py
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
28
29
# -*- coding: utf-8 -*-
# Copyright (c) 2021, Monogramm and Contributors
# See license.txt
from setuptools import setup, find_packages
import re
import ast
with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
# get version from __version__ variable in frappe_pwa/__init__.py
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('frappe_pwa/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
setup(
name='frappe_pwa',
version=version,
description='PWA setup for Frappe website.',
author='Monogramm',
author_email='opensource@monogramm.io',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=install_requires
)