We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4f46f9 commit 6838e1fCopy full SHA for 6838e1f
1 file changed
setup.py
@@ -21,13 +21,14 @@
21
22
packages = [
23
'odml',
24
- 'odml.tools'
+ 'odml.tools',
25
+ 'odml.scripts'
26
]
27
28
with open('README.rst') as f:
29
description_text = f.read()
30
-install_req = ["lxml", "pyyaml==3.12", "rdflib"]
31
+install_req = ["lxml", "pyyaml==3.12", "rdflib", "docopt"]
32
33
if sys.version_info < (3, 4):
34
install_req += ["enum34"]
@@ -45,5 +46,6 @@
45
46
include_package_data=True,
47
long_description=description_text,
48
classifiers=CLASSIFIERS,
- license="BSD"
49
+ license="BSD",
50
+ entry_points={'console_scripts': ['odmlexportrdf=odml.scripts.odml_export_rdf:main']}
51
)
0 commit comments