We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8c0f66 commit d7ae875Copy full SHA for d7ae875
MANIFEST.in
@@ -0,0 +1,2 @@
1
+include LICENSE.md
2
+include image_dataset_viz/fonts/DejaVuSans.ttf
setup.py
@@ -31,6 +31,7 @@ def find_version(*file_paths):
31
author_email="vfdev.5@gmail.com",
32
url="https://github.com/vfdev-5/ImageDatasetViz",
33
packages=find_packages(exclude=['tests', 'examples']),
34
+ include_package_data=True,
35
install_requires=[
36
'numpy',
37
'Pillow',
@@ -39,10 +40,7 @@ def find_version(*file_paths):
39
40
],
41
license='MIT',
42
test_suite="tests",
- extras_require={
43
- 'tests': [
44
- 'pytest',
45
- 'pytest-cov'
46
- ]
47
- }
+ tests_require=[
+ 'backports.tempfile;python_version<"3"'
+ ]
48
)
0 commit comments