-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.cfg
48 lines (41 loc) · 1.27 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[metadata]
name = PyLEMS
version = 0.6.7
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
long_description_content_type=text/markdown
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.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
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
[options.extras_require]
doc =
sphinxcontrib-bibtex
[flake8]
# ignore:
# spacing around operators, comment blocks, in argument lists
# lines too long
ignore = E501,E502,F403,F405,E231,E228,E225,E226,E265,E261