-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
42 lines (39 loc) · 1020 Bytes
/
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
[metadata]
name = task-scheduling
version = 0.1.4
author = Paul Rademacher
author_email = [email protected]
description = Create and test scheduling algorithms for abstract tasks
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/USNavalResearchLaboratory/task-scheduling
project_urls =
Bug Tracker = https://github.com/USNavalResearchLaboratory/task-scheduling/issues
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
[options]
include_package_data = True
packages = find:
python_requires = >=3.9
install_requires =
numpy==1.22.3
matplotlib==3.5.2
pandas==1.4.2
tabulate==0.8.9
tqdm==4.64.0
gym==0.21.0
dill==0.3.4
sortedcontainers==2.4.0
torch==1.11.0
pytorch-lightning==1.6.3
stable-baselines3==1.5.0
;package_dir =
; = .
;[options.packages.find]
;where = .
[flake8]
max-line-length = 100
extend-ignore = E203,
E501,
extend-select = B950