mirror of
https://github.com/simon987/hexlib.git
synced 2025-04-03 09:53:00 +00:00
Bumps [pydantic](https://github.com/pydantic/pydantic) from 1.10.11 to 1.10.13. - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](https://github.com/pydantic/pydantic/compare/v1.10.11...v1.10.13) --- updated-dependencies: - dependency-name: pydantic dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
603 B
Python
21 lines
603 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="hexlib",
|
|
version="1.89",
|
|
description="Misc utility methods",
|
|
author="simon987",
|
|
author_email="me@simon987.net",
|
|
packages=["hexlib"],
|
|
include_package_data=True,
|
|
package_data={"": [
|
|
"data/*"
|
|
]},
|
|
install_requires=[
|
|
"influxdb", "siphash", "python-dateutil", "redis", "orjson", "zstandard",
|
|
"u-msgpack-python", "psycopg2-binary", "bs4", "lxml", "nltk", "numpy",
|
|
"matplotlib", "fake-useragent @ git+https://github.com/Jordan9675/fake-useragent",
|
|
"requests", "pydantic==1.10.13"
|
|
]
|
|
)
|