-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
68 lines (62 loc) · 1.42 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
# This file is used to configure your project.
# Read more about the various options under:
# https://setuptools.pypa.io/en/latest/userguide/declarative_config.html
# https://setuptools.pypa.io/en/latest/references/keywords.html
[metadata]
name = wdmsim
description = WDM simulator
version = 0.0.1
author = Sunjin Choi
author_email = [email protected]
license = BSD-3-Clause
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/x-rst; charset=UTF-8
url = https://github.com/sunjin-choi/wdm-simulator
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
# Add here all kinds of additional classifiers as defined under
# https://pypi.org/classifiers/
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
# TODO: later refactor SALib, scipy, scikit-learn to [sens]
[options]
zip_safe = False
include_package_data = True
# you don't need this bc wdmsim is directly under wdm-simulator
#package_dir =
# = wdmsim
packages = find:
python_requires = >=3.6
install_requires =
numpy
pandas
cerberus
typing_extensions
PyYAML
click
matplotlib
seaborn
slack_sdk
certifi
tqdm
pdbpp
tabulate
art
SALib
scipy
scikit-learn
dataclasses; python_version < "3.7"
[options.packages.find]
#where = wdmsim
where = .
exclude =
configs*
tools*
docs*
tests*
scripts*
[options.entry_points]
console_scripts =
wdmsim = wdmsim.cli:main