File tree Expand file tree Collapse file tree 6 files changed +18
-3
lines changed Expand file tree Collapse file tree 6 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ classifiers = [
3333]
3434
3535[project .scripts ]
36- distanceprinter = ' DistancePrinter .distanceprinter:main'
36+ distanceprinter = ' diffpy.distanceprinter .distanceprinter:main'
3737
3838[project .urls ]
3939Homepage = " https://github.com/diffpy/diffpy.distanceprinter/"
@@ -46,7 +46,7 @@ dev_template = "{tag}"
4646dirty_template = " {tag}"
4747
4848[tool .setuptools .packages .find ]
49- where = [" DistancePrinter " ] # list of folders that contain the packages (["."] by default)
49+ where = [" src " ] # list of folders that contain the packages (["."] by default)
5050include = [" *" ] # package names should match these glob patterns (["*"] by default)
5151exclude = [] # exclude packages matching these glob patterns (empty by default)
5252namespaces = false # to disable scanning PEP 420 namespaces (true by default)
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+ ##############################################################################
3+ #
4+ # DistancePrinter by Simon J. L. Billinge group
5+ # (c) 2013 Trustees of the Columbia University
6+ # in the City of New York. All rights reserved.
7+ #
8+ # File coded by: Xiaohao Yang
9+ #
10+ # See AUTHORS.txt for a list of people who contributed.
11+ # See LICENSENOTICE.txt for license information.
12+ #
13+ ##############################################################################
14+
15+ # Placeholder until this gets scikit-packaged later
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 11import os
22from io import open
33
4- from DistancePrinter .distanceprinter import main
4+ from diffpy . distanceprinter .distanceprinter import main
55
66
77def test_distanceprinter (monkeypatch ):
You can’t perform that action at this time.
0 commit comments