-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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) |