~sschwarzer/ftputil

ftputil/.hgignore -rw-r--r-- 725 bytes
77f2ca24Stefan Schwarzer Move item "Push to repository" a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
syntax: glob

*.pyc
*.pyo
.cache

# These are generated by docutils and so shouldn't be in the repository.
doc/ftputil.html
doc/whats_new_in_ftputil_3.0.html
README.html

# Temporary build directory used by distutils
build/**

# Target directory for package files
dist/**

# `MANIFEST` is generated from `MANIFEST.in`.
MANIFEST

# `tags` file generated by `exctags`.
tags

# Tox test directory
.tox/**

# Coverage report files.
.coverage
htmlcov/**

# MyPy files
.mypy_cache/**

# Pytest cache
.pytest_cache/**

# Probably from `pip install -e .`
ftputil.egg-info/**

# Eclipse/PyDev project files.
.project
.pydevproject
.settings/**

# PyCharm project files.
.idea/**

# Not supposed to be under version control
private/**