2020-10-08 02:52:30 +00:00
|
|
|
import setuptools
|
|
|
|
|
2020-10-10 00:40:52 +00:00
|
|
|
|
2020-10-08 02:52:30 +00:00
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
2020-10-10 00:40:52 +00:00
|
|
|
setuptools.setup(
|
2020-10-08 02:52:30 +00:00
|
|
|
name="bytetrie",
|
2020-10-11 19:56:21 +00:00
|
|
|
version="0.0.5",
|
2020-10-08 02:52:30 +00:00
|
|
|
url="https://git.friedl.net/incubator/bytetrie",
|
|
|
|
license="MIT",
|
|
|
|
author="Armin Friedl",
|
|
|
|
author_email="dev@friedl.net",
|
|
|
|
|
|
|
|
description="A self-compressing radix trie with radix 256 in pure python",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
|
|
|
|
packages=setuptools.find_packages(exclude=("tests",)),
|
|
|
|
include_package_data=True,
|
|
|
|
|
|
|
|
classifiers=[
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
]
|
|
|
|
)
|