-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.py
More file actions
20 lines (17 loc) · 748 Bytes
/
package.py
File metadata and controls
20 lines (17 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import os
root_dir = os.path.abspath(os.path.dirname(__file__))
info = {
"name": "Counting submultisets",
"version": "0.0.0",
"description": "Enumerative combinatoric methods to compute constrained k-resolutions of n.",
"web_infos" : "http://arxiv.org/abs/1511.06142",
"repository": {
"type": "git",
"url": "https://github.com/SebastianoF/counting_sub_multisets.git"
},
"author": "Sebastiano Ferraris",
"dependencies": {
# requirements.txt file automatically generated using pipreqs.
"python" : "{0}/requirements.txt".format(root_dir)
}
}