File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11include versioneer.py
22include triplets/_version.py
3+ recursive-include triplets/export_schema *
Original file line number Diff line number Diff line change 1- from setuptools import setup
1+ from setuptools import setup , find_packages
22import versioneer
33
44with open ("README.md" , "r" ) as fh :
88 name = 'triplets' ,
99 version = versioneer .get_version ().split ("+" )[0 ],
1010 cmdclass = versioneer .get_cmdclass (),
11- packages = ['triplets' ],
11+ packages = find_packages (),
12+ package_data = {
13+ 'triplets.export_schema' : ['*.json' ], # Globs all JSON files in the export_schema package
14+ },
15+ include_package_data = True , # Still needed for consistency with MANIFEST.in
1216 long_description = long_description ,
1317 long_description_content_type = "text/markdown" ,
1418 url = 'https://github.com/Haigutus/triplets' ,
Original file line number Diff line number Diff line change 11# Import modules explicitly for package namespace
2- from . import cgmes_tools
3- from . import rdf_parser
42from . import export_schema
3+ from . import rdf_parser
4+ from . import cgmes_tools
55from . import rdfs_tools
66
77__all__ = [
You can’t perform that action at this time.
0 commit comments