-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (19 loc) · 700 Bytes
/
setup.py
File metadata and controls
25 lines (19 loc) · 700 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
# Frappe Better Attach Control © 2024
# Author: Ameen Ahmed
# Company: Level Up Marketing & Software Development Services
# Licence: Please refer to LICENSE file
from setuptools import setup, find_packages
from frappe_better_attach_control import __version__ as version
with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
setup(
name='frappe_better_attach_control',
version=version,
description='Frappe attach control that supports customization.',
author='Ameen Ahmed (Level Up)',
author_email='kid1194@gmail.com',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=install_requires
)