-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
52 lines (48 loc) · 1.86 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
# to set version dynamically: https://github.com/pypa/setuptools/issues/1724#issuecomment-627241822
[metadata]
name = drift_composition
version = attr: drift_composition.__version__
author = Richard Booth
author_email = richardabooth@gmail.com
description = A 1D model for the advection and diffusion of molecules through protoplanetary discs.
long_description = file: README.md
long_description_content_type = text/markdown
license = LGPLv3
license_file = LICENSE
include_package_data = True
url = https://github.com/rbooth200/drift_composition
project_urls =
Bug Tracker = https://github.com/rbooth200/drift_composition/issues
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
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
keywords =
science
astronomy
[options]
packages = drift_composition
# python_requires docs: https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
python_requires = >=3.7
# PEP 440 - pinning package versions: https://www.python.org/dev/peps/pep-0440/#compatible-release
install_requires =
numpy>=1.12
matplotlib>=3.1.0
scipy>=1.2.0
# additional files to include in install
[options.package_data]
* = chem_props_OW19.txt, proto_solar.dat
# extras_require syntax:
# https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html?highlight=options.extras_require#configuring-setup-using-setup-cfg-files
[options.extras_require]
test = pytest
coverage==6.2
coverage-badge==1.1.0