-
Notifications
You must be signed in to change notification settings - Fork 18
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 #73 from LEMS/chore/remove-setup.py
feat: migrate away from deprecated setup.py
- Loading branch information
Showing
13 changed files
with
97 additions
and
108 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
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ include README.md | |
include examples/*.xml | ||
include examples/*.py | ||
include LICENSE.lesser | ||
recursive-include man *.1 |
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
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,3 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,42 @@ | ||
[metadata] | ||
name = PyLEMS | ||
version = 0.6.3 | ||
author = PyLEMS authors and contributors | ||
author_email = [email protected], [email protected] | ||
maintainer_email = [email protected] | ||
url = https://github.com/LEMS/pylems | ||
description = A Python library for working with the Low Entropy Model Specification language (LEMS) | ||
long_description = file: README.md, LICENSE.lesser | ||
classifiers = | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3) | ||
Natural Language :: English | ||
Operating System :: OS Independent | ||
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 | ||
Topic :: Scientific/Engineering | ||
license = LGPL-3.0-only | ||
|
||
[options] | ||
install_requires = | ||
lxml | ||
typing; python_version<"3.5" | ||
|
||
packages = find: | ||
|
||
[options.packages.find] | ||
where = . | ||
include = lems* | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
pylems = lems.run:main | ||
|
||
|
||
[flake8] | ||
# ignore: | ||
# spacing around operators, comment blocks, in argument lists | ||
|