-
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.
Merge pull request #21 from fenfisdi/issue/19/pyproject
chore: migrated to pyproject.toml
- Loading branch information
Showing
21 changed files
with
79 additions
and
27 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Empty file.
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
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
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
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,3 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta:__legacy__" | ||
build-backend = "setuptools.build_meta" |
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
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,38 @@ | ||
[metadata] | ||
name = DINJO | ||
version = attr:dinjo.VERSION | ||
author = Juan Esteban Aristizabal-Zuluaga | ||
author_email = [email protected] | ||
description = DINJO lets you find optimal values of initial value problems´ parameters | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/fenfisdi/dinjo | ||
project_urls = | ||
Documentation = https://dinjo.readthedocs.io/ | ||
license = gplv3 | ||
classifiers = | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: GNU General Public License v3 (GPLv3) | ||
Topic :: Scientific/Engineering | ||
Topic :: Scientific/Engineering :: Mathematics | ||
Development Status :: 3 - Alpha | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
Topic :: Software Development :: Libraries | ||
Topic :: Software Development | ||
|
||
[options] | ||
package_dir = | ||
= src | ||
packages = find: | ||
install_requires = | ||
numpy==1.20.3 | ||
scipy==1.6.3 | ||
python_requires = >=3.8 | ||
zip_safe = False | ||
|
||
[options.packages.find] | ||
where = src |
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,17 +1,3 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r") as f: | ||
long_description = f.read() | ||
|
||
setuptools.setup( | ||
name='DINJO', | ||
version='0.0.dev1', | ||
description='DINJO lets you find optimal values of initial value problems\' parameters', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author='Juan Esteban Aristizabal-Zuluaga', | ||
author_email='[email protected]', | ||
license='gplv3', | ||
packages=['dinjo'], | ||
zip_safe=False | ||
) | ||
setuptools.setup() |
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 @@ | ||
VERSION = '0.0.dev1' |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.