mirror of
https://github.com/vinta/awesome-python.git
synced 2024-11-28 14:31:08 +00:00
Merge conflicts solved
This commit is contained in:
commit
6bc86601b4
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -1 +1,6 @@
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
*.py[co]
|
||||||
|
|
||||||
|
docs/index.md
|
||||||
|
site/
|
||||||
|
|
17
CONTRIBUTING.md
Normal file
17
CONTRIBUTING.md
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# Contributing
|
||||||
|
|
||||||
|
Your contributions are always welcome!
|
||||||
|
|
||||||
|
## Guidelines
|
||||||
|
|
||||||
|
* Add one link per Pull Request.
|
||||||
|
* Add the link: `* [project-name](http://example.com/) - A short description ends with a period.`
|
||||||
|
* 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.
|
||||||
|
* Don't mention `Python` in the description as it's implied.
|
||||||
|
* Check your spelling and grammar.
|
||||||
|
* Remove any trailing whitespace.
|
||||||
|
* Send a Pull Request with the reason why the library is awesome.
|
3
LICENSE
Normal file
3
LICENSE
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
Creative Commons Attribution 4.0 International License (CC BY 4.0)
|
||||||
|
|
||||||
|
http://creativecommons.org/licenses/by/4.0/
|
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