Skip to content

Commit

Permalink
update template setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AHReccese committed Jan 24, 2024
1 parent 5dadf3c commit 4e0a4cc
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions reserver/reserver_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,26 +60,34 @@ def generate_template_setup_py(package_name):
name =""" + "\"" + package_name + "\"" + """,
packages=[],
version='0.0.0',
description='DESCRIPTION',
long_description="LONG_DESCRIPTION",
description='This name has been reserved using Reserver',
long_description=\"\"\"
This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
\"\"\",
long_description_content_type='text/markdown',
author='Development Team',
author_email='[email protected]',
url='https://url.com',
download_url='https://download_url.com',
keywords="python3 python",
keywords="python3 python reserve reserver reserved",
project_urls={
'Source': 'https://github.com/source',
},
install_requires="",
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
\'Development Status :: 1 - Planning\',
\'Programming Language :: Python :: 3.6\',
\'Programming Language :: Python :: 3.7\',
\'Programming Language :: Python :: 3.8\',
\'Programming Language :: Python :: 3.9\',
\'Programming Language :: Python :: 3.10\',
\'Programming Language :: Python :: 3.11\',
\'Programming Language :: Python :: 3.12\',
],
license='MIT',
)
"""
"""
with open(package_name + "_setup.py", "w+") as f:
f.writelines(setup_py_content)

0 comments on commit 4e0a4cc

Please sign in to comment.