Skip to content

Commit

Permalink
add setup.cfg, other minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jkitchin committed Jun 20, 2024
1 parent 0f87f90 commit a7b3847
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,5 @@ pycse/tests/reports
_build
.ipynb_checkpoints
myfig*.png
ode-units-ca.png
ode-units-ca.png
*/\.virtual_documents/*
7 changes: 0 additions & 7 deletions docker/.virtual_documents/example.ipynb

This file was deleted.

2 changes: 1 addition & 1 deletion pycse-channel/readme.org
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ root(f, 0.6)



* TODO Creating arrays in numpy
* Creating arrays in numpy

- np.linspace

Expand Down
37 changes: 36 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
# Copyright 2015-2024 John Kitchin
# (see accompanying license files for details).

[metadata]
name = pycse
version = '2.2.7'
author = John Kitchin
author_email = [email protected]
license = GPL
description = python computations in science and engineering

[options.entry_points]
console_scripts =
pycse = pycse.cli:pycse

[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.8
install_requires =
numpy
scipy
numdifftools
pandas
joblib
matplotlib
requests


[flake8]
max-line-length = 80
per-file-ignores =
Expand All @@ -8,4 +38,9 @@ per-file-ignores =


[pylint]
disable=invalid-name,too-few-public-methods,keyword-arg-before-vararg, unused-argument
disable=invalid-name,too-few-public-methods,keyword-arg-before-vararg, unused-argument


# see ~/.pypirc for 2FA setup with token
# (shell-command "python setup.py sdist bdist_wheel")
# (shell-command "twine upload dist/*")

0 comments on commit a7b3847

Please sign in to comment.