Skip to content

Commit

Permalink
hxlquickmeta (#9): hxltype; MVP of conversion from Ad-hoc local libra…
Browse files Browse the repository at this point in the history
…ry to installable namespaced (with -eticaai) pip package; still need to figure out this python pip thing
  • Loading branch information
fititnt committed Feb 22, 2021
1 parent 2430e72 commit 3b218a2
Show file tree
Hide file tree
Showing 18 changed files with 36 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ data-mining-projects/
hxlquickimport_samples/
*.~lock*
*__pycache__*
dist/
build/
*.egg-info*
.Rhistory
!tests/files/output/*
!tests/files/output/.gitkeep
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ numpy

# Both pandas and orange3 are used on some tests
# TODO: make both pandas and orange3 optional
pandas
orange3
# pandas
# orange3

# TODO: consider implement xarray (sadly, requires pandas)
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

# python -m pip install -e

setuptools.setup(
# using username 'eticaai' to provide some namespace
# we're not planning to release this on pip (at least not soon)
# So users would need to install via github.
# Anyway, tend to be a good idea allow user import different packages
name="hxlm_eticaai",
version="0.7.0",
author="Emerson Rocha",
author_email="rocha@ieee.org",
description="Internal usage. Not production ready. Ignore it.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/EticaAI/HXL-Data-Science-file-formats",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
"Topic :: Utilities"
],
packages=setuptools.find_packages(),
python_requires='>=3.7',
)

0 comments on commit 3b218a2

Please sign in to comment.