20 lines
507 B
Python
20 lines
507 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="filewarmer",
|
|
version="0.0.16",
|
|
description="Library to read file blocks as fast as possible",
|
|
long_description=open("README.md").read(), # noqa: SIM115
|
|
long_description_content_type="text/markdown",
|
|
packages=["filewarmer"],
|
|
package_data={
|
|
"filewarmer": ["lib/*.h", "lib/*.so"],
|
|
},
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: POSIX :: Linux",
|
|
],
|
|
python_requires=">=3.6",
|
|
)
|