File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ commit = True
4
4
tag = True
5
5
6
6
[bumpversion:file:setup.py]
7
- search = version =' {current_version}'
8
- replace = version =' {new_version}'
7
+ search = version =" {current_version}"
8
+ replace = version =" {new_version}"
9
9
10
10
[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}"
13
13
14
14
[bdist_wheel]
15
15
universal = 1
Original file line number Diff line number Diff line change 41
41
test_requirements = requirements_file .read ().split ("\n " )
42
42
43
43
setup (
44
+ name = "my_project_template" ,
45
+ version = "0.0.1" ,
44
46
author = "Pradeep Bashyal" ,
45
47
author_email = "pbashyal@nmdp.org" ,
46
48
python_requires = ">=3.8" ,
47
49
classifiers = [
48
- "Development Status :: 1 - Pre-Alpha" ,
50
+ "Development Status :: 2 - Pre-Alpha" ,
49
51
"Intended Audience :: Developers" ,
50
52
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)" ,
51
53
"Natural Language :: English" ,
57
59
install_requires = requirements ,
58
60
license = "LGPL 3.0" ,
59
61
long_description = readme + "\n \n " + history ,
62
+ long_description_content_type = "text/markdown" ,
60
63
include_package_data = True ,
61
64
keywords = "my_project_template" ,
62
- name = "my_project_template" ,
63
65
packages = find_packages (include = ["my_project_template" ]),
64
66
test_suite = "tests" ,
65
67
tests_require = test_requirements ,
66
68
url = "https://github.com/nmdp-bioinformatics/my_project_template" ,
67
- version = "0.0.1" ,
68
69
zip_safe = False ,
69
70
)
You can’t perform that action at this time.
0 commit comments