Skip to content

Commit

Permalink
Update README and ignore tests in PyPI package
Browse files Browse the repository at this point in the history
  • Loading branch information
tbennun committed Oct 22, 2019
1 parent 6fe96f8 commit ed574e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To install: `pip install dace`

Runtime dependencies:
* A C++14-capable compiler (e.g., gcc 5.3+)
* Python 3.5 or newer
* Python 3.6 or newer
* CMake 2.8.12 or newer (for Windows, CMake 3.15 is recommended)

Running
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
for f in (glob.glob(diode_path + '**/*.js', recursive=True) +
glob.glob(diode_path + '**/*.css', recursive=True) +
glob.glob(diode_path + '**/*.html', recursive=True) +
glob.glob(diode_path + '**/LICENSE', recursive=True) +
glob.glob(diode_path + 'client/external_lib/material/*') +
glob.glob(diode_path + 'db_scripts/*', recursive=True))
]
cub_files = [
Expand Down Expand Up @@ -47,7 +49,7 @@
"Operating System :: OS Independent",
],
python_requires='>=3.6',
packages=find_packages(),
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data={
'': [
'*.yml', 'codegen/CMakeLists.txt', 'codegen/tools/*.cpp',
Expand Down

0 comments on commit ed574e5

Please sign in to comment.