2022-01-12 02:52:25 +03:00
|
|
|
[metadata]
|
|
|
|
name = hatlib
|
|
|
|
author = Microsoft Research AI Compilers Team
|
|
|
|
author_email = mlodev@microsoft.com
|
|
|
|
summary = Tools for HAT (Header Annotated with TOML) packages
|
2022-03-31 05:09:44 +03:00
|
|
|
url = https://www.github.com/microsoft/hat
|
2022-01-12 02:52:25 +03:00
|
|
|
long_description = file: README.md
|
|
|
|
long_description_content_type = text/markdown
|
|
|
|
license_files = LICENSE
|
|
|
|
classifiers =
|
|
|
|
License :: OSI Approved :: MIT License
|
|
|
|
Intended Audience :: Developers
|
|
|
|
Topic :: Software Development
|
|
|
|
Topic :: Software Development :: Libraries
|
|
|
|
Topic :: Software Development :: Libraries :: Python Modules
|
|
|
|
Programming Language :: C++
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3.7
|
|
|
|
Programming Language :: Python :: 3.8
|
|
|
|
Programming Language :: Python :: 3.9
|
2022-01-28 06:39:41 +03:00
|
|
|
Programming Language :: Python :: 3.10
|
2022-01-12 02:52:25 +03:00
|
|
|
|
|
|
|
[options]
|
|
|
|
python_requires = ~=3.7
|
|
|
|
install_requires =
|
|
|
|
numpy
|
|
|
|
pandas
|
2022-01-21 03:01:46 +03:00
|
|
|
toml
|
2022-01-12 02:52:25 +03:00
|
|
|
tomlkit
|
2022-01-12 06:59:50 +03:00
|
|
|
vswhere; sys_platform == "win32"
|
2022-01-12 02:52:25 +03:00
|
|
|
package_dir =
|
2022-03-15 09:20:41 +03:00
|
|
|
hatlib = hatlib
|
2022-03-31 03:59:46 +03:00
|
|
|
packages = find:
|
2022-01-12 02:52:25 +03:00
|
|
|
|
2022-03-31 05:09:44 +03:00
|
|
|
[options.packages.find]
|
|
|
|
exclude =
|
|
|
|
test*
|
|
|
|
|
2022-01-12 02:52:25 +03:00
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
hatlib.benchmark_hat = hatlib.benchmark_hat_package:main_command
|
|
|
|
hatlib.hat_to_dynamic = hatlib.hat_to_dynamic:main
|
2022-03-21 07:17:56 +03:00
|
|
|
hatlib.verify_hat = hatlib.verify_hat_package:main
|
2022-03-30 23:50:00 +03:00
|
|
|
|
|
|
|
[pycodestyle]
|
|
|
|
max-line-length = 120
|