-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 841 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 841 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="sanpy",
version="0.14.0",
author="Santiment",
author_email="admin@santiment.net",
description="Package for Santiment API access with python",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/santiment/sanpy",
packages=setuptools.find_packages(),
setup_requires=["numpy", "Cython"],
install_requires=["pandas>=1.3.0", "requests", "urllib3", "iso8601", "setuptools", "typer>=0.9.0"],
extras_require={
"extras": ["numpy", "matplotlib", "scipy", "mlfinlab"],
"dev": ["ruff", "pytest"],
},
entry_points={
"console_scripts": [
"san=san.cli:app",
],
},
)