forked from weihuayi/fealpy
-
Notifications
You must be signed in to change notification settings - Fork 0
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
5 changed files
with
28 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[bumpversion] | ||
current_version = 1.1.2 | ||
commit = True | ||
tag = True | ||
tag_name = v{new_version} | ||
|
||
[bumpversion:file:fealpy/__init__.py] |
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 |
---|---|---|
|
@@ -44,3 +44,6 @@ dist | |
*.swn | ||
*.swo | ||
*.vtu | ||
|
||
|
||
.vscode |
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 |
---|---|---|
@@ -1 +1,8 @@ | ||
include requirements.txt | ||
# Include the requirements | ||
include requirements.txt | ||
|
||
# Include the README | ||
include README.md | ||
|
||
# Include the license file | ||
include COPYRIGHT.txt |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
"""FEALPy: Finite Element Analysis Library in Python | ||
==== | ||
""" | ||
|
||
__version__ = "1.1.2" |
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 |
---|---|---|
@@ -1,8 +1,12 @@ | ||
import os | ||
import pathlib | ||
from setuptools import setup, find_packages | ||
from fealpy import __version__ | ||
|
||
|
||
here = os.path.abspath(os.path.dirname(__file__)) | ||
here = pathlib.Path(__file__).parent.resolve() | ||
long_description = (here / "README.md").read_text(encoding="utf-8") | ||
|
||
|
||
def load_requirements(path_dir=here, comment_char="#"): | ||
with open(os.path.join(path_dir, "requirements.txt"), "r") as file: | ||
|
@@ -19,8 +23,10 @@ def load_requirements(path_dir=here, comment_char="#"): | |
|
||
setup( | ||
name="fealpy", | ||
version="1.0", | ||
version=__version__, | ||
description="FEALPy: Finite Element Analysis Library in Python", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="http://github.com/weihuayi/fealpy", | ||
author="Huayi Wei", | ||
author_email="[email protected]", | ||
|