-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 690 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (19 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
import os
# Read in requirements.txt file to get install dependencies
lib_folder = os.path.dirname(os.path.realpath(__file__))
requirement_path = lib_folder + '/requirements.txt'
install_requires = []
if os.path.isfile(requirement_path):
with open(requirement_path) as f:
install_requires = f.read().splitlines()
# Setup file
setup(
name="fred_e",
version="0.0.3",
description="A data series manager / watcher / database for series sourced from the St. Louis Fed FRED system",
author="Jonathan L",
url="https://github.com/liangjh/fred-e",
packages=find_packages(),
install_requires=install_requires
)