-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 2024-present Kensho Technologies, LLC.
# Package metadata is located in pyproject.toml
from distutils.core import setup # pylint: disable=deprecated-module
setup(
name="kensho_kenverters",
packages=["kensho_kenverters"],
version="1.0.1",
license="Apache-2.0",
description="Python Toolkit for Kensho Extract",
author="Valerie Faucon-Morin",
author_email="[email protected]",
url="https://github.com/kensho-technologies/kenverters",
download_url="https://github.com/kensho-technologies/kenverters/archive/refs/tags/v_1_0_1.tar.gz", # noqa:E501
keywords=["Kensho Extract", "Python Toolkit"],
install_requires=[
"pandas",
"pydantic",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)