PyFacts/setup.py

18 lines
521 B
Python
Raw Permalink Normal View History

2022-02-17 10:50:48 +00:00
from setuptools import find_packages, setup
license = open("LICENSE").read().strip()
setup(
2022-06-25 13:20:25 +00:00
name="pyfacts",
version=open("VERSION").read().strip(),
2022-02-17 10:50:48 +00:00
license=license,
author="Gourav Kumar",
author_email="gouravkr@outlook.in",
url="https://gouravkumar.com",
2022-06-26 16:03:32 +00:00
description="A Python library to perform financial analytics on Time Series data",
2022-02-17 10:50:48 +00:00
long_description=open("README.md").read().strip(),
packages=find_packages(),
install_requires=["python-dateutil"],
test_suite="tests",
)