File tree Expand file tree Collapse file tree 8 files changed +39
-49
lines changed Expand file tree Collapse file tree 8 files changed +39
-49
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ __pycache__/
28
28
* .py [cod ]
29
29
* $py.class
30
30
env /
31
+ _build /
31
32
build /
32
33
develop-eggs /
33
34
dist /
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ setup-dev: setup-env
18
18
.PHONY : build-docs
19
19
build-docs : clean virtualenv
20
20
python3 -m pip install -r docs/requirements.txt
21
- mkdocs build
21
+ mkdocs build --clean --site-dir _build/html --config-file mkdocs.yml
22
22
23
23
.PHONY : serve-docs
24
24
serve-docs : clean virtualenv
@@ -46,6 +46,7 @@ uninstall:
46
46
clean :
47
47
rm -rf dist/
48
48
rm -rf build/
49
+ rm -rf _build/
49
50
rm -rf * .egg-info
50
51
find . -name ' *.pyc' -delete
51
52
find . -name ' *.pyo' -delete
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,10 +3,14 @@ atomicwrites==1.4.0
3
3
distlib == 0.3.1
4
4
filelock == 3.0.12
5
5
mkdocs == 1.1.2
6
- mkdocs-material == 7.0.6
6
+ mkdocs-material == 7.1.4
7
7
mkdocs-material-extensions == 1.0.1
8
8
mkdocstrings == 0.15.0
9
- Pygments == 2.8.1
10
- pymdown-extensions == 8.1.1
11
- pytkdocs == 0.11.0
12
- docutils == 0.16
9
+ Pygments == 2.9.0
10
+ pymdown-extensions == 8.2
11
+ pytkdocs == 0.11.1
12
+ docutils == 0.17.1
13
+ # Trying to see if RTFD needs these
14
+ markdown == 3.3.4
15
+ typed-ast == 1.4.3
16
+ MarkupSafe == 2.0.0
Original file line number Diff line number Diff line change 55
55
- Overview : ' library-usage/index.md'
56
56
- " <b>Writing Policies</b> " :
57
57
- writing.minimize : ' library-usage/writing/minimize.md'
58
- - writing.validate : ' library-usage/writing/validate.md'
59
58
- command.write_policy : ' library-usage/writing/write_policy.md'
60
59
- " <b>Querying the Database</b> " :
61
60
- querying.all : ' library-usage/querying/all.md'
Original file line number Diff line number Diff line change 1
- appdirs == 1.4.4
2
- astroid == 2.5.1
3
- attrs == 20.3.0
1
+ # Unit Testing
2
+ pytest == 6.2.4
3
+ pylint == 2.8.2
4
+ nose == 1.3.7
5
+ coverage == 5.5
6
+ # Integration tests and tasks
7
+ invoke == 1.5.0
8
+ # Security testing
9
+ safety == 1.10.3
4
10
bandit == 1.7.0
5
- beautifulsoup4 == 4.9.3
11
+ # Formatting
6
12
black == 20.8b1
7
- certifi == 2020.12.5
8
- chardet == 4.0.0
9
- click == 7.1.2
10
- contextlib2 == 0.6.0.post1
11
- coverage == 5.5
13
+ # Other? Maybe this is from the docs? Not sure.
14
+ appdirs == 1.4.4
15
+ astroid == 2.5.6
16
+ attrs == 20.3.0
12
17
dparse == 0.5.1
13
18
future == 0.18.2
14
19
gitdb == 4.0.5
15
20
GitPython == 3.1.14
16
- idna == 2.10
17
21
iniconfig == 1.1.1
18
- invoke == 1.5.0
19
22
isort == 5.8.0
20
23
Jinja2 == 2.11.3
21
24
joblib == 1.0.1
@@ -26,27 +29,19 @@ MarkupSafe==1.1.1
26
29
mccabe == 0.6.1
27
30
mypy-extensions == 0.4.3
28
31
nltk == 3.5
29
- nose == 1.3.7
30
32
packaging == 20.9
31
33
pathspec == 0.8.1
32
34
pbr == 5.5.1
33
35
pluggy == 0.13.1
34
36
py == 1.10.0
35
- pylint == 2.7.2
36
37
pyparsing == 2.4.7
37
- pytest == 6.2.2
38
- PyYAML == 5.4.1
39
38
regex == 2021.3.17
40
39
requests == 2.25.1
41
- safety == 1.10.3
42
- schema == 0.7.4
43
40
six == 1.15.0
44
- soupsieve == 2.2.1
45
41
stevedore == 3.3.0
46
42
toml == 0.10.2
47
43
tornado == 6.1
48
44
tqdm == 4.59.0
49
45
typed-ast == 1.4.2
50
46
typing-extensions == 3.7.4.3
51
- urllib3 == 1.26.4
52
47
wrapt == 1.12.1
Original file line number Diff line number Diff line change
1
+ # Command line
2
+ click == 8.0.0
3
+ # Web Scraping
1
4
beautifulsoup4 == 4.9.3
2
- certifi == 2020.12.5
3
- chardet == 4.0.0
4
- click == 7.1.2
5
- contextlib2 == 0.6.0.post1
6
- idna == 2.10
7
- PyYAML == 5.4.1
8
5
requests == 2.25.1
6
+ # Config files and schema validation
7
+ PyYAML == 5.4.1
9
8
schema == 0.7.4
10
- soupsieve == 2.2.1
11
- urllib3 == 1.26.4
Original file line number Diff line number Diff line change 10
10
'nose' ,
11
11
'pytest'
12
12
]
13
+ REQUIRED_PACKAGES = [
14
+ 'beautifulsoup4' ,
15
+ 'click' ,
16
+ 'requests' ,
17
+ 'schema' ,
18
+ 'PyYAML' ,
19
+ ]
13
20
PROJECT_URLS = {
14
21
"Documentation" : "https://policy-sentry.readthedocs.io/" ,
15
22
"Code" : "https://github.com/salesforce/policy_sentry/" ,
@@ -48,13 +55,7 @@ def get_description():
48
55
url = "https://github.com/salesforce/policy_sentry" ,
49
56
packages = setuptools .find_packages (exclude = ['test*' ]),
50
57
tests_require = TESTS_REQUIRE ,
51
- install_requires = [
52
- 'beautifulsoup4' ,
53
- 'click' ,
54
- 'requests' ,
55
- 'schema' ,
56
- 'PyYAML' ,
57
- ],
58
+ install_requires = REQUIRED_PACKAGES ,
58
59
project_urls = PROJECT_URLS ,
59
60
classifiers = [
60
61
"Programming Language :: Python :: 3" ,
You can’t perform that action at this time.
0 commit comments