Skip to content

Commit 6b0aa72

Browse files
Remove unwanted files
1 parent 17777db commit 6b0aa72

19 files changed

Lines changed: 166 additions & 143 deletions

.gitignore

Lines changed: 153 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/python,visualstudiocode
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,visualstudiocode
4+
5+
### Python ###
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
pip-wheel-metadata/
29+
share/python-wheels/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
MANIFEST
34+
35+
# PyInstaller
36+
# Usually these files are written by a python script from a template
37+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
38+
*.manifest
39+
*.spec
40+
41+
# Installer logs
42+
pip-log.txt
43+
pip-delete-this-directory.txt
44+
45+
# Unit test / coverage reports
46+
htmlcov/
47+
.tox/
48+
.nox/
49+
.coverage
50+
.coverage.*
51+
.cache
52+
nosetests.xml
53+
coverage.xml
54+
*.cover
55+
*.py,cover
56+
.hypothesis/
57+
.pytest_cache/
58+
pytestdebug.log
59+
60+
# Translations
61+
*.mo
62+
*.pot
63+
64+
# Django stuff:
65+
*.log
66+
local_settings.py
67+
db.sqlite3
68+
db.sqlite3-journal
69+
70+
# Flask stuff:
71+
instance/
72+
.webassets-cache
73+
74+
# Scrapy stuff:
75+
.scrapy
76+
77+
# Sphinx documentation
78+
docs/_build/
79+
doc/_build/
80+
81+
# PyBuilder
82+
target/
83+
84+
# Jupyter Notebook
85+
.ipynb_checkpoints
86+
87+
# IPython
88+
profile_default/
89+
ipython_config.py
90+
91+
# pyenv
92+
.python-version
93+
94+
# pipenv
95+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
96+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
97+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
98+
# install all needed dependencies.
99+
#Pipfile.lock
100+
101+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
102+
__pypackages__/
103+
104+
# Celery stuff
105+
celerybeat-schedule
106+
celerybeat.pid
107+
108+
# SageMath parsed files
109+
*.sage.py
110+
111+
# Environments
112+
.env
113+
.venv
114+
env/
115+
venv/
116+
ENV/
117+
env.bak/
118+
venv.bak/
119+
120+
# Spyder project settings
121+
.spyderproject
122+
.spyproject
123+
124+
# Rope project settings
125+
.ropeproject
126+
127+
# mkdocs documentation
128+
/site
129+
130+
# mypy
131+
.mypy_cache/
132+
.dmypy.json
133+
dmypy.json
134+
135+
# Pyre type checker
136+
.pyre/
137+
138+
# pytype static type analyzer
139+
.pytype/
140+
141+
### VisualStudioCode ###
142+
.vscode/*
143+
!.vscode/settings.json
144+
!.vscode/tasks.json
145+
!.vscode/launch.json
146+
!.vscode/extensions.json
147+
*.code-workspace
148+
149+
### VisualStudioCode Patch ###
150+
# Ignore all local history of files
151+
.history
152+
153+
# End of https://www.toptal.com/developers/gitignore/api/python,visualstudiocode

.prettierrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"singleQuote": true,
3+
"printWidth": 80,
4+
"editor.formatOnSave": true,
5+
"proseWrap": "always",
6+
"tabWidth": 4,
7+
"requireConfig": false,
8+
"useTabs": false,
9+
"trailingComma": "none",
10+
"bracketSpacing": true,
11+
"jsxBracketSameLine": false,
12+
"semi": true
13+
}

Setu.egg-info/PKG-INFO

Lines changed: 0 additions & 10 deletions
This file was deleted.

Setu.egg-info/SOURCES.txt

Lines changed: 0 additions & 16 deletions
This file was deleted.

Setu.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

Setu.egg-info/not-zip-safe

Lines changed: 0 additions & 1 deletion
This file was deleted.

Setu.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

build/lib/setu/__init__.py

Whitespace-only changes.

build/lib/setu/auth.py

Lines changed: 0 additions & 32 deletions
This file was deleted.

build/lib/setu/deeplink.py

Lines changed: 0 additions & 76 deletions
This file was deleted.

0 commit comments

Comments
 (0)