Compare commits

..

2 Commits

Author SHA1 Message Date
d229c9cf2d removed entrypoint 2022-06-25 18:50:25 +05:30
a8b90182da removed unused libraries 2022-06-25 13:51:05 +05:30
3 changed files with 3 additions and 28 deletions

View File

@ -1,20 +0,0 @@
import sys
def main(args=None):
"""The main routine."""
if args is None:
args = sys.argv[1:]
print("This is the main routine.")
print("It should do something interesting.")
print("This is the name of the script: ", sys.argv[0])
print("Number of arguments: ", len(sys.argv))
print("The arguments are: ", str(sys.argv))
# Do argument parsing here with argparse
if __name__ == "__main__":
main()

Binary file not shown.

View File

@ -3,20 +3,15 @@ from setuptools import find_packages, setup
license = open("LICENSE").read().strip()
setup(
name="PyFacts",
version="0.0.1",
name="pyfacts",
version=open("VERSION").read().strip(),
license=license,
author="Gourav Kumar",
author_email="gouravkr@outlook.in",
url="https://gouravkumar.com",
description="A library which makes handling time series data easier",
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",
entry_points={
"console_scripts": [
"fincal=fincal.__main__:main",
]
},
)