-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hxlquickmeta (#9): hxltype; MVP of conversion from Ad-hoc local libra…
…ry to installable namespaced (with -eticaai) pip package; still need to figure out this python pip thing
- Loading branch information
Showing
18 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
) |