-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
60 lines (56 loc) · 1.52 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
49
50
51
52
53
54
55
56
57
58
59
60
[metadata]
name = thermohw
description = Package for converting thermo homework assignments
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
keywords = thermodynamics homework pdf jupyter notebook
maintainer = Bryan W. Weber
author = Bryan W. Weber
maintainer-email = [email protected]
url = https://github.com/bryanwweber/thermohw
project_urls =
Source = https://github.com/bryanwweber/thermohw
Tracker = https://github.com/bryanwweber/thermohw/issues
platforms = any
license = BSD-3-clause
license_file = LICENSE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Intended Audience :: Science/Research
Intended Audience :: Education
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering :: Chemistry
[options]
packages = thermohw
python_requires = ~=3.7
include_package_data = True
zip_safe = False
install_requires =
nbconvert>=5.5,<6.0
traitlets>=4.3,<5.0
pdfrw>=0.4,<0.5
pandocfilters>=1.4,<2.0
ipython>=7.0,<8.0
[options.entry_points]
console_scripts =
convert_thermo_hw = thermohw.convert_thermo_hw:main
[options.extras_require]
testing =
pytest>=3.2.0
[flake8]
exclude =
.git,
__pycache__,
build,
dist,
htmlcov,
docs,
pyked/tests,
setup.py
max-line-length = 88