Skip to content

Commit 6139769

Browse files
v__0.224
1 parent f655272 commit 6139769

File tree

2 files changed

+35
-16
lines changed

2 files changed

+35
-16
lines changed

pyproject.toml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[build-system]
2+
requires = ["setuptools>=68", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "mec"
7+
version = "0.224"
8+
description = "description of the package"
9+
readme = "README.md"
10+
requires-python = ">=3"
11+
license = { file = "LICENSE" } # or: { text = "MIT" }
12+
authors = [{ name = "Alfred Galichon", email = "[email protected]" }]
13+
dependencies = [
14+
"gurobipy",
15+
"PyGithub",
16+
"python-dotenv",
17+
]
18+
19+
[tool.setuptools.packages.find]
20+
where = ["."]
21+
include = ["mec*"]
22+
23+
[tool.setuptools.package-data]
24+
mec = [
25+
"datasets/**/*.txt",
26+
"datasets/**/*.csv",
27+
"datasets/**/*.asc",
28+
"datasets/*/*/*.asc",
29+
"datasets/*/*/*.txt",
30+
"datasets/*/*/*.csv",
31+
]
32+
33+
[tool.pytest.ini_options]
34+
testpaths = ["tests"]
35+
addopts = "-ra -q"

setup.py

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)