PyFacts/setup.py
2022-06-25 18:50:25 +05:30

18 lines
514 B
Python

from setuptools import find_packages, setup
license = open("LICENSE").read().strip()
setup(
name="pyfacts",
version=open("VERSION").read().strip(),
license=license,
author="Gourav Kumar",
author_email="gouravkr@outlook.in",
url="https://gouravkumar.com",
description="A library to perform financial analytics on Time Series data",
long_description=open("README.md").read().strip(),
packages=find_packages(),
install_requires=["python-dateutil"],
test_suite="tests",
)