forked from stfc/fparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
56 lines (51 loc) · 1.41 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
[metadata]
name = fparser
author = Pearu Peterson, Rupert Ford, Andrew Porter
author_email = [email protected]
license = BSD 3-Clause License
url = https://github.com/stfc/fparser
description = The fparser project
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
Natural Language :: English
Programming Language :: Fortran
Programming Language :: Python
Topic :: Scientific/Engineering
Topic :: Software Development
Topic :: Utilities
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
project_urls =
Source = https://github.com/stfc/fparser
Tracker = https://github.com/stfc/fparser/issues
Documentation = https://fparser.readthedocs.io/en/latest/
[options]
package_dir =
=src
packages = find:
# We need the following line to ensure we get the fparser/log.config
# file installed.
include_package_data = True
install_requires =
importlib-metadata; python_version >= "3.6"
setuptools_scm
setup_requires =
setuptools_scm
[options.packages.find]
where=src
[options.extras_require]
doc =
sphinx
sphinx_rtd_theme
tests = pytest >= 3.3.0
[options.entry_points]
console_scripts =
fparser2 = fparser.scripts.fparser2:main
[build_sphinx]
source-dir = doc