Skip to content

Commit b1baf1b

Browse files
authored
remove .egg, update .gitignore
1 parent 1f925d2 commit b1baf1b

File tree

7 files changed

+130
-45
lines changed

7 files changed

+130
-45
lines changed

.gitignore

Lines changed: 129 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,131 @@
1-
# OSX and python intermediate files
1+
# Byte-compiled / optimized / DLL files
22
__pycache__/
3-
.DS_Store
4-
~*
5-
*~
6-
*.pyc
7-
.ipynb_checkpoints/
8-
debug.log
9-
10-
# DataJoint and setup files
11-
dj_local_con*.json
12-
julia/setup.jl
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
1326
.idea/
14-
temp*
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
.hypothesis/
48+
/tests/user_data
49+
50+
# Translations
51+
*.mo
52+
*.pot
53+
54+
# Django stuff:
55+
*.log
56+
local_settings.py
57+
58+
# Flask stuff:
59+
instance/
60+
.webassets-cache
61+
62+
# Scrapy stuff:
63+
.scrapy
64+
scratchpaper.*
65+
66+
# Sphinx documentation
67+
docs/_build/
68+
69+
# PyBuilder
70+
target/
71+
72+
# Jupyter Notebook
73+
.ipynb_checkpoints
74+
75+
# pyenv
76+
.python-version
77+
78+
# celery beat schedule file
79+
celerybeat-schedule
80+
81+
# SageMath parsed files
82+
*.sage.py
83+
84+
# dotenv
85+
docker/standard_worker/.env
86+
87+
# virtualenv
88+
.venv
89+
venv/
90+
ENV/
91+
92+
# Spyder project settings
93+
.spyderproject
94+
.spyproject
95+
96+
# Rope project settings
97+
.ropeproject
98+
99+
# mkdocs documentation
100+
/site
101+
102+
# mypy
103+
.mypy_cache/
104+
105+
# datajoint
106+
dj_local_conf.json
107+
dj_local_conf_old.json
108+
109+
# emacs
110+
**/*~
111+
**/#*#
112+
**/.#*
113+
docker-compose.yml
114+
Diagram.ipynb
115+
116+
# docker
117+
docker/standard_worker/.env
118+
119+
# vscode
120+
.vscode/settings.json
121+
122+
# ssh
123+
*.ssh
124+
*.pem
125+
126+
# github actions
127+
.github/.test/*
128+
!.github/.test/README.md
129+
130+
# Mac
131+
.DS_Store

datajoint_tutorial.egg-info/PKG-INFO

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

datajoint_tutorial.egg-info/SOURCES.txt

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

datajoint_tutorial.egg-info/dependency_links.txt

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

datajoint_tutorial.egg-info/requires.txt

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

datajoint_tutorial.egg-info/top_level.txt

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

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
from setuptools import setup, find_packages
22
from os import path
33

4-
pkg_name = 'tutorial_pipeline'
54
here = path.abspath(path.dirname(__file__))
65

76
long_description = """"
8-
DataJoint interactive tutorials with examples from electrophysiology, calcium-imaging
7+
DataJoint interactive tutorials with examples from electrophysiology and calcium-imaging
98
"""
109

1110
with open(path.join(here, 'requirements.txt')) as f:

0 commit comments

Comments
 (0)