File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ commit = True
44tag = True
55
66[bumpversion:file:setup.py]
7- search = version =' {current_version}'
8- replace = version =' {new_version}'
7+ search = version =" {current_version}"
8+ replace = version =" {new_version}"
99
1010[bumpversion:file:my_project_template/__init__.py]
11- search = __version__ = ' {current_version}'
12- replace = __version__ = ' {new_version}'
11+ search = __version__ = " {current_version}"
12+ replace = __version__ = " {new_version}"
1313
1414[bdist_wheel]
1515universal = 1
Original file line number Diff line number Diff line change 4141 test_requirements = requirements_file .read ().split ("\n " )
4242
4343setup (
44+ name = "my_project_template" ,
45+ version = "0.0.1" ,
4446 author = "Pradeep Bashyal" ,
45474648 python_requires = ">=3.8" ,
4749 classifiers = [
48- "Development Status :: 1 - Pre-Alpha" ,
50+ "Development Status :: 2 - Pre-Alpha" ,
4951 "Intended Audience :: Developers" ,
5052 "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)" ,
5153 "Natural Language :: English" ,
5759 install_requires = requirements ,
5860 license = "LGPL 3.0" ,
5961 long_description = readme + "\n \n " + history ,
62+ long_description_content_type = "text/markdown" ,
6063 include_package_data = True ,
6164 keywords = "my_project_template" ,
62- name = "my_project_template" ,
6365 packages = find_packages (include = ["my_project_template" ]),
6466 test_suite = "tests" ,
6567 tests_require = test_requirements ,
6668 url = "https://github.com/nmdp-bioinformatics/my_project_template" ,
67- version = "0.0.1" ,
6869 zip_safe = False ,
6970)
You can’t perform that action at this time.
0 commit comments