2020-05-01 12:19:11 +00:00
|
|
|
from setuptools import find_packages, setup
|
2020-04-02 09:36:24 +00:00
|
|
|
from bench import PROJECT_NAME, VERSION
|
2016-03-22 07:44:31 +00:00
|
|
|
|
2021-11-26 06:25:21 +00:00
|
|
|
with open("requirements.txt") as f:
|
|
|
|
install_requires = f.read().strip().split("\n")
|
|
|
|
|
|
|
|
with open("README.md") as f:
|
|
|
|
long_description = f.read()
|
2016-03-22 07:44:31 +00:00
|
|
|
|
2014-07-10 17:21:34 +00:00
|
|
|
setup(
|
2020-04-02 09:36:24 +00:00
|
|
|
name=PROJECT_NAME,
|
2021-11-26 06:25:21 +00:00
|
|
|
description="CLI to manage Multi-tenant deployments for Frappe apps",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
2020-04-02 09:36:24 +00:00
|
|
|
version=VERSION,
|
2021-11-26 06:25:21 +00:00
|
|
|
license="GPLv3",
|
|
|
|
author="Frappe Technologies Pvt Ltd",
|
|
|
|
author_email="developers@frappe.io",
|
|
|
|
url="https://frappe.io/bench",
|
|
|
|
project_urls={
|
|
|
|
"Documentation": "https://frappeframework.com/docs/user/en/bench",
|
|
|
|
"Source": "https://github.com/frappe/bench",
|
|
|
|
"Changelog": "https://github.com/frappe/bench/releases",
|
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
|
|
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: MacOS",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Topic :: Software Development :: Build Tools",
|
|
|
|
"Topic :: Software Development :: User Interfaces",
|
|
|
|
"Topic :: System :: Installation/Setup",
|
|
|
|
],
|
2015-12-22 19:59:41 +00:00
|
|
|
packages=find_packages(),
|
2021-11-26 06:25:21 +00:00
|
|
|
python_requires="~=3.6",
|
2015-12-22 19:59:41 +00:00
|
|
|
zip_safe=False,
|
|
|
|
include_package_data=True,
|
2018-04-17 10:43:17 +00:00
|
|
|
install_requires=install_requires,
|
2021-11-26 06:25:21 +00:00
|
|
|
entry_points={"console_scripts": ["bench=bench.cli:cli"]},
|
2014-07-10 17:21:34 +00:00
|
|
|
)
|