-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (30 loc) · 824 Bytes
/
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
30
31
32
33
34
35
36
from setuptools import setup, find_packages
setup(
name="mercury",
version="0.1.0",
description="A data pipeline project for financial and macroeconomic analysis.",
author="Nathan Tran",
author_email="[email protected]",
packages=find_packages(include=["mercury", "mercury.*"]),
install_requires=[
"pandas",
"fredapi",
"python-dotenv",
],
entry_points={
"console_scripts": [
"run-pipeline=mercury.main:main",
],
},
include_package_data=True,
package_data={
"": ["*.txt", "*.csv"],
},
license="MIT",
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)