Skip to content

Commit

Permalink
Reorganize repo structure
Browse files Browse the repository at this point in the history
  • Loading branch information
fdmarcin committed Dec 28, 2020
1 parent 2f3af60 commit dc7bff4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

# To use a consistent encoding
from codecs import open
Expand Down Expand Up @@ -43,5 +43,8 @@
"benerate = benerator_cumberpy:benerate_name",
]
},
package_data={"benerator_cumberpy": ["data/*"]},
include_package_data=True,
packages=find_packages("src"), # include all packages under src
package_dir={"": "src"},
package_data={"": ["data/*.txt"],},
)
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit dc7bff4

Please sign in to comment.