forked from creativecommons/creativecommons.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
29 lines (26 loc) · 701 Bytes
/
Pipfile
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
# pipenv alone does not setup the License Engine. See scripts/setup_engine.sh
# and README.md
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
[packages]
[packages."cc.engine"]
editable = true
path = "python_src/cc.engine"
[packages."cc.i18n"]
editable = true
path = "python_src/cc.i18n"
[packages."cc.license"]
editable = true
path = "python_src/cc.license"
[packages."cc.licenserdf"]
editable = true
path = "python_src/cc.licenserdf"
[packages.future]
[packages.rdfadict]
editable = true
path = "python_src/rdfadict"
[requires]
python_version = "2.7"