|
| 1 | + |
| 2 | +# python3 -m pip install https://github.com/EticaAI/HXL-Data-Science-file-formats/archive/main.zip |
| 3 | + |
1 | 4 | # TODO: see https://stackoverflow.com/questions/5062793/is-it-possible-to-use-two-python-packages-with-the-same-name #noqa
|
2 | 5 | # TODO: see https://packaging.python.org/guides/packaging-namespace-packages/ #noqa
|
3 | 6 | # TODO: see https://www.python.org/dev/peps/pep-0420/
|
|
10 | 13 | with open("README.md", "r", encoding="utf-8") as fh:
|
11 | 14 | long_description = fh.read()
|
12 | 15 |
|
13 |
| -# python3 -m pip install https://github.com/EticaAI/HXL-Data-Science-file-formats/archive/main.zip |
14 |
| - |
15 |
| -# pip3 show hxlm-eticaai |
16 |
| -# Name: hxlm-eticaai |
17 |
| -# Version: 0.7.0 |
18 |
| -# Summary: Internal usage. Not production ready. Ignore it. |
19 |
| -# Home-page: https://github.com/EticaAI/HXL-Data-Science-file-formats |
20 |
| -# Author: Emerson Rocha |
21 |
| -# Author-email: rocha@ieee.org |
22 |
| -# License: UNKNOWN |
23 |
| -# Location: /home/fititnt/.local/lib/python3.8/site-packages |
24 |
| -# Requires: |
25 |
| -# Required-by: |
26 |
| -# fititnt@bravo:/workspace/git/EticaAI/HXL-Da |
27 |
| - |
| 16 | +# TODO: this configuration, while somewhat eventually would allow plugins with |
| 17 | +# higher priority, still save o disk on {path}/hxlm and not |
| 18 | +# {path}/hxlm_eticaai (so it could allow several extensions). This |
| 19 | +# eventually will be fixed when I manage to learn more about python |
| 20 | +# internals (fititnt, 2021-02-23 02:56 UTC) |
28 | 21 | setuptools.setup(
|
29 | 22 | # using username 'eticaai' to provide some namespace
|
30 | 23 | # we're not planning to release this on pip (at least not soon)
|
31 | 24 | # So users would need to install via github.
|
32 | 25 | # Anyway, tend to be a good idea allow user import different packages
|
33 | 26 | name="hxlm_eticaai",
|
34 |
| - namespace_packages="hxlm", |
| 27 | + namespace_packages=["hxlm"], |
35 | 28 | version="0.7.0",
|
36 | 29 | author="Emerson Rocha",
|
37 | 30 | author_email="rocha@ieee.org",
|
|
0 commit comments