-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
68 lines (56 loc) · 1.97 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
61
62
63
64
65
66
67
68
# Metadata: Information about the package, used by package managers.
[metadata]
name = biosim-a39-sougata-tonje
# Obtain version and author info from package,
# usually defined in __init__.py
version = attr: biosim.__version__
author = attr: biosim.__author__
author_email = attr: biosim.__email__
# Provide description, long version picked up from file.
description = A biosimulation for the Island of Rossumøya
long_description = file: README.md
long_description_content_type = text/markdown
# Homepage for package and specific URLs
url = https://gitlab.com/nmbu.no/emner/inf200/h2022/january-block-teams/a39_sougata_tonje/biosim-a39-sougata-tonje
project_urls =
Bug Tracker = https://gitlab.com/nmbu.no/emner/inf200/h2022/january-block-teams/a39_sougata_tonje/biosim-a39-sougata-tonje/-/issues
# License information
license = MIT License
# Classifiers, for options, see https://pypi.org/classifiers/
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
# More information about requirements
[options]
# Python version required
python_requires = >=3.10
# Other packages required (eg numpy, pandas, ...)
# Do NOT list packages from the Python Standard Library
# https://docs.python.org/3.9/library/index.html
install_requires =
numpy
scipy
prettytable
matplotlib
numba
statsmodels
# Which packages to include: tell packaging mechanism to search in src
package_dir =
= src
packages = find:
# TODO Scripts to also include in distribution package
scripts =
# examples/experiment_01.py
# examples/experiment_02.py
# Tell package-finding mechanism where to search
[options.packages.find]
where = src
# Tell our PEP8 checker that we allow 100 character lines
[flake8]
max-line-length = 100
# Other configuration information could follow here