Skip to content

Commit c80c349

Browse files
committed
Move to src directory
1 parent 2eec853 commit c80c349

File tree

8 files changed

+3
-2
lines changed

8 files changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
about = {}
32-
with open(os.path.join(here, NAME, '__version__.py')) as f:
32+
with open(os.path.join(here, 'src', NAME, '__version__.py')) as f:
3333
exec(f.read(), about)
3434

3535

@@ -44,7 +44,8 @@
4444
author_email=EMAIL,
4545
python_requires=REQUIRES_PYTHON,
4646
url=URL,
47-
packages=find_packages(exclude=('docs', 'tests',)),
47+
packages=find_packages('src'),
48+
package_dir={'': 'src'},
4849
# If your package is a single module, use this instead of 'packages':
4950
# py_modules=['mypackage'],
5051

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)