mirror of
https://github.com/vinta/awesome-python.git
synced 2024-11-24 12:31:07 +00:00
Resolved merge conflict with upstream master
This commit is contained in:
commit
0b812de318
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,2 +1,6 @@
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
*.py[co]
|
*.py[co]
|
||||||
|
|
||||||
|
docs/index.md
|
||||||
|
site/
|
||||||
|
|
|
@ -4,12 +4,14 @@ Your contributions are always welcome!
|
||||||
|
|
||||||
## Guidelines
|
## Guidelines
|
||||||
|
|
||||||
* Add section if needed.
|
* Add one link per Pull Request.
|
||||||
* Add section description.
|
* Add the link: `* [project-name](http://example.com/) - A short description ends with a period.`
|
||||||
* Add section title to Table of contents.
|
* Keep descriptions concise.
|
||||||
|
* Add a section if needed.
|
||||||
|
* Add the section description.
|
||||||
|
* Add the section title to Table of Contents.
|
||||||
* Search previous suggestions before making a new one, as yours may be a duplicate.
|
* Search previous suggestions before making a new one, as yours may be a duplicate.
|
||||||
* Add your links: `* [project-name](http://example.com/) - A short description ends with a dot.`
|
|
||||||
* Don't mention `Python` in the description as it's implied.
|
* Don't mention `Python` in the description as it's implied.
|
||||||
* Check your spelling and grammar.
|
* Check your spelling and grammar.
|
||||||
* Make sure your text editor is set to remove trailing whitespace.
|
* Remove any trailing whitespace.
|
||||||
* Send a Pull Request.
|
* Send a Pull Request with the reason why the library is awesome.
|
||||||
|
|
16
Makefile
Normal file
16
Makefile
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
BASEDIR=$(CURDIR)
|
||||||
|
DOCDIR=$(BASEDIR)/docs
|
||||||
|
|
||||||
|
install:
|
||||||
|
pip install mkdocs
|
||||||
|
|
||||||
|
link:
|
||||||
|
ln -sf $(BASEDIR)/README.md $(DOCDIR)/index.md
|
||||||
|
|
||||||
|
preview:
|
||||||
|
$(MAKE) link
|
||||||
|
mkdocs serve
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
$(MAKE) link
|
||||||
|
mkdocs gh-deploy --clean
|
1
docs/CNAME
Normal file
1
docs/CNAME
Normal file
|
@ -0,0 +1 @@
|
||||||
|
awesome-python.com
|
37
docs/extra.css
Normal file
37
docs/extra.css
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
.bs-sidebar.well {
|
||||||
|
/* margin-bottom: 0; */
|
||||||
|
}
|
||||||
|
|
||||||
|
.bs-sidebar .nav > li > a:hover,
|
||||||
|
.bs-sidebar .nav > li > a:focus {
|
||||||
|
border: none;
|
||||||
|
border-left: 2px solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bs-sidebar .nav > .active > a,
|
||||||
|
.bs-sidebar .nav > .active:hover > a,
|
||||||
|
.bs-sidebar .nav > .active:focus > a {
|
||||||
|
border: none;
|
||||||
|
border-left: 2px solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 992px) {
|
||||||
|
.bs-sidebar.affix {
|
||||||
|
/* top: 60px; */
|
||||||
|
/* bottom: 0px; */
|
||||||
|
top: 80px;
|
||||||
|
bottom: 23px;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
.bs-sidebar.affix-bottom,
|
||||||
|
.bs-sidebar.affix {
|
||||||
|
width: 280px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container > .col-md-9 {
|
||||||
|
padding-left: 40px;
|
||||||
|
}
|
||||||
|
}
|
9
mkdocs.yml
Normal file
9
mkdocs.yml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
site_name: Awesome Python
|
||||||
|
site_url: http://awesome-python.com
|
||||||
|
site_description: A curated list of awesome Python frameworks, libraries and software
|
||||||
|
site_author: Vinta Chen
|
||||||
|
repo_url: https://github.com/vinta/awesome-python
|
||||||
|
theme: flatly
|
||||||
|
google_analytics: ['UA-510626-7', 'auto']
|
||||||
|
pages:
|
||||||
|
- "Life is short, you need Python.": "index.md"
|
Loading…
Reference in New Issue
Block a user