File tree Expand file tree Collapse file tree 2 files changed +16
-8
lines changed
Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 11recursive-include src *
2- recursive-include tests *
32include AUTHORS.txt LICENSE*.txt README.rst
3+ recursive-exclude src *.py[co]
4+ global-exclude .gitattributes .gitignore .gitarchive.cfg
5+ global-exclude .DS_Store
46
5- # Exclude all bytecode files and __pycache__ directories
6- recursive-exclude src *.pyc *.pyo __pycache__/
7- recursive-exclude tests *.pyc *.pyo __pycache__/
7+ # Avoid user content in setup.cfg to make distribution reproducible.
8+ exclude setup.cfg
9+
10+ # Exclude git-tracked files spuriously added by setuptools_scm
11+ exclude .coveragerc
12+ exclude .travis*
13+ prune conda-recipe
14+ prune devutils
15+ prune doc
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ requires = ["setuptools>=62.0", "setuptools-git-versioning<2"]
33build-backend = " setuptools.build_meta"
44
55[project ]
6- name = " diffpy.utilstestlee "
7- version = " 3.2.0rc10 "
6+ name = " diffpy.utils "
7+ dynamic =[ ' version ' ]
88authors = [
99 { name =" Simon J.L. Billinge group" , email =" simon.billinge@gmail.com" },
1010]
@@ -46,7 +46,7 @@ dirty_template = "{tag}"
4646[tool .setuptools .packages .find ]
4747where = [" src" ] # list of folders that contain the packages (["."] by default)
4848include = [" diffpy*" ] # package names should match these glob patterns (["*"] by default)
49- exclude = [] # exclude packages matching these glob patterns (empty by default)
49+ exclude = [" diffpy.utils.tests* " ] # exclude packages matching these glob patterns (empty by default)
5050namespaces = false # to disable scanning PEP 420 namespaces (true by default)
5151
5252[tool .black ]
@@ -70,4 +70,4 @@ exclude = '''
7070 | blib2to3
7171 | tests/data
7272)/
73- '''
73+ '''
You can’t perform that action at this time.
0 commit comments